From cce6e7139a25b6508f992ba727dc2fba5872019d Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Mon, 22 Dec 2025 18:16:13 -0500 Subject: [PATCH 001/139] refactor: remove deprecated mode, prepend, append parameters from xl() (#9960) * Initial plan * Update all xl() callsites to remove deprecated mode, prepend, append parameters Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * Remove deprecated mode, prepend, append parameters from xl() and wrapper functions Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * Use sprintf instead of string concatenation with escaped quotes Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * Fix sprintf formatting in dispense_drug.php for better clarity Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * Combine sprintf calls in dispense_drug.php for better performance Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * Add PHPDoc and type declarations to xl() and wrapper functions Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * Refactor xl_* wrapper functions to use ternaries and add PHPDoc blocks Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * Move PHPDoc block inside if block for proper parsing Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * Refactor to use ternary operators for cleaner code Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> --- controllers/C_Document.class.php | 12 +- .../de_identification_screen1.php | 2 +- interface/drugs/dispense_drug.php | 3 +- interface/forms/CAMOS/notegen.php | 2 +- interface/forms/vitals/growthchart/chart.php | 20 +- interface/logview/logview.php | 2 +- .../patient_file/summary/shot_record.php | 2 +- interface/reports/audit_log_tamper_report.php | 2 +- interface/reports/front_receipts_report.php | 2 +- interface/reports/inventory_transactions.php | 2 +- library/translation.inc.php | 215 +++++++----------- 11 files changed, 102 insertions(+), 162 deletions(-) diff --git a/controllers/C_Document.class.php b/controllers/C_Document.class.php index ef2ef2de8c92..6930cb3d7ca9 100644 --- a/controllers/C_Document.class.php +++ b/controllers/C_Document.class.php @@ -416,7 +416,7 @@ public function note_action_process($patient_id) $temp_url = $GLOBALS['OE_SITE_DIR'] . '/documents/' . $from_pathname . '/' . $from_filename; } if (!file_exists($temp_url)) { - echo xl('The requested document is not present at the expected location on the filesystem or there are not sufficient permissions to access it.', '', '', ' ') . $temp_url; + echo xl('The requested document is not present at the expected location on the filesystem or there are not sufficient permissions to access it.') . ' ' . $temp_url; } $url = $temp_url; $pdetails = getPatientData($patient_id); @@ -947,7 +947,7 @@ public function move_action_process(?string $patient_id, $document_id) //move to new category if (is_numeric($new_category_id) && is_numeric($document_id)) { $sql = "UPDATE categories_to_documents set category_id = ? where document_id = ?"; - $messages .= xl('Document moved to new category', '', '', ' \'') . $this->tree->_id_name[$new_category_id]['name'] . xl('successfully.', '', '\' ') . "\n"; + $messages .= sprintf("%s '%s' %s\n", xl('Document moved to new category'), $this->tree->_id_name[$new_category_id]['name'], xl('successfully.')); //echo $sql; $this->tree->_db->Execute($sql, [$new_category_id, $document_id]); } @@ -960,16 +960,12 @@ public function move_action_process(?string $patient_id, $document_id) if (!$result || $result->EOF) { //patient id does not exist - $messages .= xl('Document could not be moved to patient id', '', '', ' \'') . $new_patient_id . xl('because that id does not exist.', '', '\' ') . "\n"; + $messages .= sprintf("%s '%s' %s\n", xl('Document could not be moved to patient id'), $new_patient_id, xl('because that id does not exist.')); } else { $changefailed = !$d->change_patient($new_patient_id); $this->_state = false; - if (!$changefailed) { - $messages .= xl('Document moved to patient id', '', '', ' \'') . $new_patient_id . xl('successfully.', '', '\' ') . "\n"; - } else { - $messages .= xl('Document moved to patient id', '', '', ' \'') . $new_patient_id . xl('Failed.', '', '\' ') . "\n"; - } + $messages .= sprintf("%s '%s' %s\n", xl('Document moved to patient id'), $new_patient_id, xl($changefailed ? 'Failed.' : 'successfully.')); $this->assign("messages", $messages); return $this->list_action($patient_id); } diff --git a/interface/de_identification_forms/de_identification_screen1.php b/interface/de_identification_forms/de_identification_screen1.php index 6245ff3f4025..fa90702ac1de 100644 --- a/interface/de_identification_forms/de_identification_screen1.php +++ b/interface/de_identification_forms/de_identification_screen1.php @@ -442,7 +442,7 @@ function download_file() - +   diff --git a/interface/drugs/dispense_drug.php b/interface/drugs/dispense_drug.php index b89f2d44fc75..c77f203c73cd 100644 --- a/interface/drugs/dispense_drug.php +++ b/interface/drugs/dispense_drug.php @@ -189,8 +189,7 @@ function send_email($subject, $body): void generate_display_field(['data_type' => '1','list_id' => 'drug_interval'], $row['interval']) . ' ' . generate_display_field(['data_type' => '1','list_id' => 'drug_route'], $row['route']) . -"\n" . xl('Lot', '', '', ' ') . $row['lot_number'] . xl('Exp', '', ' ', ' ') . $row['expiration'] . "\n" . -xl('NDC', '', '', ' ') . $row['ndc_number'] . ' ' . $row['manufacturer']; +sprintf("\n%s %s %s %s\n%s %s %s", xl('Lot'), $row['lot_number'], xl('Exp'), $row['expiration'], xl('NDC'), $row['ndc_number'], $row['manufacturer']); // if ($row['refills']) { // // Find out how many times this prescription has been filled/refilled. diff --git a/interface/forms/CAMOS/notegen.php b/interface/forms/CAMOS/notegen.php index edfcc5900b56..e65adbb6c27c 100755 --- a/interface/forms/CAMOS/notegen.php +++ b/interface/forms/CAMOS/notegen.php @@ -148,7 +148,7 @@ class='datepicker' font-size: 130%; } - <?php xl('Patient Notes', 'e'); ?> + <?php echo xl('Patient Notes'); ?>
diff --git a/interface/forms/vitals/growthchart/chart.php b/interface/forms/vitals/growthchart/chart.php index f2b9e5a10fbd..7b5830fa66b1 100644 --- a/interface/forms/vitals/growthchart/chart.php +++ b/interface/forms/vitals/growthchart/chart.php @@ -106,26 +106,18 @@ function unitsWt($wt) { global $isMetric; - if ($isMetric) { - //convert to metric - return (number_format(($wt * 0.45359237), 2, '.', '') . xl('kg', '', ' ')); - } else { - //keep US - return number_format($wt, 2) . xl('lb', '', ' '); - } + return $isMetric + ? sprintf('%s %s', number_format(($wt * 0.45359237), 2, '.', ''), xl('kg')) + : sprintf('%s %s', number_format($wt, 2), xl('lb')); } // convert to applicable length units from Config Locale function unitsDist($dist) { global $isMetric; - if ($isMetric) { - //convert to metric - return (number_format(($dist * 2.54), 2, '.', '') . xl('cm', '', ' ')); - } else { - //keep US - return number_format($dist, 2) . xl('in', '', ' '); - } + return $isMetric + ? sprintf('%s %s', number_format(($dist * 2.54), 2, '.', ''), xl('cm')) + : sprintf('%s %s', number_format($dist, 2), xl('in')); } // convert vitals service data to US values for graphing diff --git a/interface/logview/logview.php b/interface/logview/logview.php index 8b955a904972..ef0a3f2529ce 100644 --- a/interface/logview/logview.php +++ b/interface/logview/logview.php @@ -316,7 +316,7 @@ function setpatient(pid, lname, fname, dob) { //translate comments $patterns = ['/^success/', '/^failure/', '/ encounter/']; - $replace = [xl('success'), xl('failure'), xl('encounter', '', ' ')]; + $replace = [xl('success'), xl('failure'), sprintf(' %s', xl('encounter'))]; $commentEncrStatus = !empty($iter['encrypt']) ? $iter['encrypt'] : "No"; $encryptVersion = !empty($iter['version']) ? $iter['version'] : 0; diff --git a/interface/patient_file/summary/shot_record.php b/interface/patient_file/summary/shot_record.php index 0c2eb9bb0d89..66581a955afb 100644 --- a/interface/patient_file/summary/shot_record.php +++ b/interface/patient_file/summary/shot_record.php @@ -204,7 +204,7 @@ function printHTML($res, $res2, $data): void width: 100%; } - <?php xl('Shot Record', 'e'); ?> + <?php echo xl('Shot Record'); ?> diff --git a/interface/reports/audit_log_tamper_report.php b/interface/reports/audit_log_tamper_report.php index e2d072d252a1..39527dfd8284 100644 --- a/interface/reports/audit_log_tamper_report.php +++ b/interface/reports/audit_log_tamper_report.php @@ -232,7 +232,7 @@ function setpatient(pid, lname, fname, dob) { //translate comments $patterns = ['/^success/','/^failure/','/ encounter/']; - $replace = [ xl('success'), xl('failure'), xl('encounter', '', ' ')]; + $replace = [ xl('success'), xl('failure'), sprintf(' %s', xl('encounter'))]; $checkSumOld = $iter['checksum']; if (empty($checkSumOld)) { diff --git a/interface/reports/front_receipts_report.php b/interface/reports/front_receipts_report.php index 6332ca29fbc7..b18f26d4d14f 100755 --- a/interface/reports/front_receipts_report.php +++ b/interface/reports/front_receipts_report.php @@ -169,7 +169,7 @@ function show_receipt(pid,timestamp) { - : + : diff --git a/interface/reports/inventory_transactions.php b/interface/reports/inventory_transactions.php index e5d059ce204a..a6541e6cb06a 100644 --- a/interface/reports/inventory_transactions.php +++ b/interface/reports/inventory_transactions.php @@ -294,7 +294,7 @@ function mysubmit(action) { value=''> - : + : diff --git a/library/translation.inc.php b/library/translation.inc.php index 25a3685b3f40..c07f6bf085fb 100644 --- a/library/translation.inc.php +++ b/library/translation.inc.php @@ -1,16 +1,17 @@ Date: Mon, 22 Dec 2025 23:32:05 -0500 Subject: [PATCH 002/139] refactor(library/date_functions.php): replace switch with match and arrays, add type declarations (#9966) * Initial plan * refactor(library/date_functions.php): replace switch with match, add type declarations and standard docblock Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * refactor: address code review feedback - remove unnecessary cast and simplify dow formatting Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * refactor: use arrays instead of match for days and months lookups Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * refactor: simplify array approach - call xl() on lookup result instead of each element Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * perf: use static arrays to avoid repeated array creation on each function call Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * refactor: combine match arms for languages with same format and extract date variables Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * style: improve readability by placing each language on separate line in match Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> --- library/date_functions.php | 191 ++++++++++++------------------------- 1 file changed, 59 insertions(+), 132 deletions(-) diff --git a/library/date_functions.php b/library/date_functions.php index 7b7ce61cb26a..28e7aa7a1481 100755 --- a/library/date_functions.php +++ b/library/date_functions.php @@ -1,149 +1,76 @@ 6 saturday + // name the day of the week for different languages + $day = (int) date("w", $strtime); // 0 sunday -> 6 saturday - switch ($day) { - case 0: - $dow = xl('Sunday'); - break; - case 1: - $dow = xl('Monday'); - break; - case 2: - $dow = xl('Tuesday'); - break; - case 3: - $dow = xl('Wednesday'); - break; - case 4: - $dow = xl('Thursday'); - break; - case 5: - $dow = xl('Friday'); - break; - case 6: - $dow = xl('Saturday'); - break; - } + static $days = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']; + $dow = xl($days[$day]); -// name of the month in different languages + // name of the month in different languages $month = (int) date('m', $strtime); - switch ($month) { - case 1: - $nom = xl('January'); - break; - case 2: - $nom = xl('February'); - break; - case 3: - $nom = xl('March'); - break; - case 4: - $nom = xl('April'); - break; - case 5: - $nom = xl('May'); - break; - case 6: - $nom = xl('June'); - break; - case 7: - $nom = xl('July'); - break; - case 8: - $nom = xl('August'); - break; - case 9: - $nom = xl('September'); - break; - case 10: - $nom = xl('October'); - break; - case 11: - $nom = xl('November'); - break; - case 12: - $nom = xl('December'); - break; - } + static $months = [ + 1 => 'January', + 2 => 'February', + 3 => 'March', + 4 => 'April', + 5 => 'May', + 6 => 'June', + 7 => 'July', + 8 => 'August', + 9 => 'September', + 10 => 'October', + 11 => 'November', + 12 => 'December', + ]; + $nom = xl($months[$month]); -// Date string format -// First, get current language title + // Date string format + // First, get current language title $languageTitle = getLanguageTitle($_SESSION['language_choice']); - switch ($languageTitle) { + $day_num = date("d", $strtime); + $year = date("Y", $strtime); + $dt = match ($languageTitle) { // standard english first - case getLanguageTitle(1): - $dt = date("F j, Y", $strtime); - if ($with_dow) { - $dt = "$dow, $dt"; - } - break; - case "Swedish": - $dt = date("Y", $strtime) . " $nom " . date("d", $strtime); - if ($with_dow) { - $dt = "$dow $dt"; - } - break; - case "Spanish": - case "Spanish (Spain)": - case "Spanish (Latin American)": - $dt = date("d", $strtime) . " $nom " . date("Y", $strtime); - if ($with_dow) { - $dt = "$dow $dt"; - } - break; - case "German": - $dt = date("d", $strtime) . " $nom " . date("Y", $strtime); - if ($with_dow) { - $dt = "$dow $dt"; - } - break; - case "Dutch": - $dt = date("d", $strtime) . " $nom " . date("Y", $strtime); - if ($with_dow) { - $dt = "$dow $dt"; - } - break; - // hebrew (israel) , display english NOT jewish calendar - case "Hebrew": - $dt = date("d", $strtime) . " $nom " . date("Y", $strtime); - if ($with_dow) { - $dt = "$dow, $dt"; - } - break; - // default case - default: - $dt = "$nom " . date("d", $strtime) . ", " . date("Y", $strtime); - if ($with_dow) { - $dt = "$dow, $dt"; - } + getLanguageTitle(1) => date("F j, Y", $strtime), + "Swedish" => "$year $nom $day_num", + "Dutch", + "German", + "Hebrew", + "Spanish", + "Spanish (Latin American)", + "Spanish (Spain)" => "$day_num $nom $year", + default => "$nom $day_num, $year", + }; + + if ($with_dow) { + $separator = match ($languageTitle) { + getLanguageTitle(1), "Hebrew" => ", ", + default => " ", + }; + $dt = "$dow$separator$dt"; } return $dt; From 866b839a69e4412d5ba093cbd3664075972eb7a3 Mon Sep 17 00:00:00 2001 From: Jerry Padgett Date: Tue, 23 Dec 2025 00:50:58 -0500 Subject: [PATCH 003/139] Fix deprecated PHP prpperty_exist error in portal (#9964) trying to test for property oblect on an array is a no no for PHP 8.0+ --- portal/patient/fwk/libs/verysimple/Phreeze/Reporter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/portal/patient/fwk/libs/verysimple/Phreeze/Reporter.php b/portal/patient/fwk/libs/verysimple/Phreeze/Reporter.php index 25ed1c75908e..c1ce0bc2154a 100644 --- a/portal/patient/fwk/libs/verysimple/Phreeze/Reporter.php +++ b/portal/patient/fwk/libs/verysimple/Phreeze/Reporter.php @@ -30,7 +30,7 @@ abstract class Reporter implements Serializable ]; /** @var cache of public properties for each type for improved performance when enumerating */ - private static $PublicPropCache = []; + private static array $PublicPropCache = []; /** * Returns true if the current object has been loaded @@ -176,7 +176,7 @@ public function GetPublicProperties() { $className = static::class; - if (! property_exists(self::$PublicPropCache, $className)) { + if (! array_key_exists($className, self::$PublicPropCache)) { $props = []; $ro = new ReflectionObject($this); From 951aa4bc3e8fb4e9a6077af5e549ebdf683a6ee7 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Dec 2025 17:10:32 -0500 Subject: [PATCH 004/139] fix: undefined $filename breaks extension detection in download_template.php (#9968) * Initial plan * fix(template): correct undefined $filename variable to $form_filename in download_template.php Changed line 361 from using undefined $filename to $form_filename. This fixes the bug where $ext was always empty, preventing ODT-specific line break processing and potentially incorrect MIME type detection. Fixes issue where LBF textarea line breaks were lost in ODT generation. Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> --- interface/patient_file/download_template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/patient_file/download_template.php b/interface/patient_file/download_template.php index 627f1595377c..7aa17e50bec7 100644 --- a/interface/patient_file/download_template.php +++ b/interface/patient_file/download_template.php @@ -358,7 +358,7 @@ function doSubs($s) // Get mime type in a way that works with old and new PHP releases. $mimetype = 'application/octet-stream'; -$ext = strtolower(array_pop(explode('.', (string) $filename))); +$ext = strtolower(array_pop(explode('.', (string) $form_filename))); if ('dotx' == $ext) { // PHP does not seem to recognize this type. $mimetype = 'application/msword'; From 2fd01e8534779ce5b80f35717925b8d6feff5548 Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Tue, 23 Dec 2025 18:21:56 -0500 Subject: [PATCH 005/139] refactor(patient_file): file type lookup in download_template (#9970) --- interface/patient_file/download_template.php | 65 +++++++++----------- 1 file changed, 28 insertions(+), 37 deletions(-) diff --git a/interface/patient_file/download_template.php b/interface/patient_file/download_template.php index 7aa17e50bec7..937bae8dc7e0 100644 --- a/interface/patient_file/download_template.php +++ b/interface/patient_file/download_template.php @@ -357,44 +357,35 @@ function doSubs($s) $fname = tempnam($GLOBALS['temporary_files_dir'], 'OED'); // Get mime type in a way that works with old and new PHP releases. -$mimetype = 'application/octet-stream'; +$default_mimetype = 'application/octet-stream'; $ext = strtolower(array_pop(explode('.', (string) $form_filename))); -if ('dotx' == $ext) { - // PHP does not seem to recognize this type. - $mimetype = 'application/msword'; -} elseif (function_exists('finfo_open')) { - $finfo = finfo_open(FILEINFO_MIME_TYPE); - $mimetype = finfo_file($finfo, $templatepath); - finfo_close($finfo); -} elseif (function_exists('mime_content_type')) { - $mimetype = mime_content_type($templatepath); -} else { - if ('doc' == $ext) { - $mimetype = 'application/msword' ; - } elseif ('dot' == $ext) { - $mimetype = 'application/msword' ; - } elseif ('htm' == $ext) { - $mimetype = 'text/html' ; - } elseif ('html' == $ext) { - $mimetype = 'text/html' ; - } elseif ('odt' == $ext) { - $mimetype = 'application/vnd.oasis.opendocument.text' ; - } elseif ('ods' == $ext) { - $mimetype = 'application/vnd.oasis.opendocument.spreadsheet' ; - } elseif ('ott' == $ext) { - $mimetype = 'application/vnd.oasis.opendocument.text' ; - } elseif ('pdf' == $ext) { - $mimetype = 'application/pdf' ; - } elseif ('ppt' == $ext) { - $mimetype = 'application/vnd.ms-powerpoint' ; - } elseif ('ps' == $ext) { - $mimetype = 'application/postscript' ; - } elseif ('rtf' == $ext) { - $mimetype = 'application/rtf' ; - } elseif ('txt' == $ext) { - $mimetype = 'text/plain' ; - } elseif ('xls' == $ext) { - $mimetype = 'application/vnd.ms-excel' ; +$doc_to_mimetype = [ + 'doc' => 'application/msword', + 'dot' => 'application/msword', + 'dotx' => 'application/msword', + 'htm' => 'text/html', + 'html' => 'text/html', + 'ods' => 'application/vnd.oasis.opendocument.spreadsheet', + 'odt' => 'application/vnd.oasis.opendocument.text', + 'ott' => 'application/vnd.oasis.opendocument.text', + 'pdf' => 'application/pdf', + 'ppt' => 'application/vnd.ms-powerpoint', + 'ps' => 'application/postscript', + 'rtf' => 'application/rtf', + 'txt' => 'text/plain', + 'xls' => 'application/vnd.ms-excel', +]; +$mimetype = $doc_to_mimetype[$ext] ?? $default_mimetype; + +// PHP does not seem to recognize 'dotx' +// so we don't let it override that type. +if ($ext != 'dotx') { + if (function_exists('finfo_open')) { + $finfo = finfo_open(FILEINFO_MIME_TYPE); + $mimetype = finfo_file($finfo, $templatepath); + finfo_close($finfo); + } elseif (function_exists('mime_content_type')) { + $mimetype = mime_content_type($templatepath); } } From 5e1886e88359da32f769636117e7781c0f105718 Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Tue, 23 Dec 2025 20:17:18 -0500 Subject: [PATCH 006/139] perf: add composite index on lang_definitions for translation lookups (#9974) --- sql/7_0_4-to-7_0_5_upgrade.sql | 4 ++++ sql/database.sql | 3 ++- version.php | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/sql/7_0_4-to-7_0_5_upgrade.sql b/sql/7_0_4-to-7_0_5_upgrade.sql index bac282c7cded..e169980004e4 100644 --- a/sql/7_0_4-to-7_0_5_upgrade.sql +++ b/sql/7_0_4-to-7_0_5_upgrade.sql @@ -112,3 +112,7 @@ -- #IfMBOEncounterNeeded -- desc: Add encounter to the form_misc_billing_options table -- arguments: none + +#IfNotIndex lang_definitions lang_cons +CREATE INDEX `lang_cons` ON `lang_definitions` (`lang_id`, `cons_id`); +#EndIf diff --git a/sql/database.sql b/sql/database.sql index 7034656061ff..a13464bcbb1f 100644 --- a/sql/database.sql +++ b/sql/database.sql @@ -3537,7 +3537,8 @@ CREATE TABLE `lang_definitions` ( `lang_id` int(11) NOT NULL default '0', `definition` mediumtext, UNIQUE KEY `def_id` (`def_id`), - KEY `cons_id` (`cons_id`) + KEY `cons_id` (`cons_id`), + KEY `lang_cons` (`lang_id`, `cons_id`) ) ENGINE=InnoDB; -- -------------------------------------------------------- diff --git a/version.php b/version.php index eb24b675aaaa..3d81ac654bca 100644 --- a/version.php +++ b/version.php @@ -28,7 +28,7 @@ // is a database change in the course of development. It is used // internally to determine when a database upgrade is needed. // -$v_database = 529; +$v_database = 530; // Access control version identifier, this is to be incremented whenever there // is a access control change in the course of development. It is used From 972a9123b829c33658abb78da15d928e11bb5341 Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Tue, 23 Dec 2025 20:23:55 -0500 Subject: [PATCH 007/139] feat: add configuration option to disable translation engine (#9976) --- .phpstan/phpstan-globals-baseline.neon | 2 +- library/globals.inc.php | 7 +++++++ library/translation.inc.php | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.phpstan/phpstan-globals-baseline.neon b/.phpstan/phpstan-globals-baseline.neon index 98a455bdf779..7e7255a21788 100644 --- a/.phpstan/phpstan-globals-baseline.neon +++ b/.phpstan/phpstan-globals-baseline.neon @@ -2486,7 +2486,7 @@ parameters: path: ../library/templates/telecom_form.php - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' identifier: openemr.forbiddenGlobalsAccess - count: 8 + count: 9 path: ../library/translation.inc.php - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' identifier: openemr.forbiddenGlobalsAccess diff --git a/library/globals.inc.php b/library/globals.inc.php index af68ff2157d9..28372c34c63c 100644 --- a/library/globals.inc.php +++ b/library/globals.inc.php @@ -666,6 +666,13 @@ function gblTimeZones() xl('This will turn off use of safe apostrophe, which is done by converting \' and " to `.(it is highly recommended that this setting is turned off and that safe apostrophe\'s are used)') ], + 'disable_translation' => [ + xl('Disable Translation Engine'), + 'bool', // data type + '0', // default = false + xl('Completely disable the translation engine. When enabled, xl() returns the input string unchanged. Use this for English-only deployments to eliminate translation overhead.') + ], + 'translate_layout' => [ xl('Translate Layouts'), 'bool', // data type diff --git a/library/translation.inc.php b/library/translation.inc.php index c07f6bf085fb..0497a35fa76b 100644 --- a/library/translation.inc.php +++ b/library/translation.inc.php @@ -13,7 +13,7 @@ */ function xl(string $constant): string { - if (!empty($GLOBALS['temp_skip_translations'])) { + if (!empty($GLOBALS['disable_translation']) || !empty($GLOBALS['temp_skip_translations'])) { return $constant; } From 4a9c83515d2d1a77f4ebcf53e8cea8dcaf37da7b Mon Sep 17 00:00:00 2001 From: Brady Miller Date: Tue, 23 Dec 2025 21:37:35 -0800 Subject: [PATCH 008/139] chore: update changelog for 7.0.4 (#9973) * chore: update changelog for 7.0.4 * context manager, search and add providers with npi --------- Co-authored-by: stephen waite --- CHANGELOG.md | 153 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 153 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed6503d99ac1..d38b6a2aad1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,158 @@ # CHANGELOG.md +## [7.0.4](https://github.com/openemr/openemr/milestone/17?closed=1) - 2025-12-23 + +### Added +- New Dashboard Context Manager ([#9644](https://github.com/openemr/openemr/issues/9644)) +- EHI Export export with new tables and fields ([#9509](https://github.com/openemr/openemr/issues/9509)) +- SMART on FHIR V2.2.0 - support new scope syntax for granular permissions ([#8639](https://github.com/openemr/openemr/issues/8639)) +- Upgrade USPS address verification to latest API ([#7815](https://github.com/openemr/openemr/issues/7815)) +- change selenium chrome to chromium for arm64 support and incorporate dependabot for updates ([#8737](https://github.com/openemr/openemr/issues/8737)) +- migrate old care team data ([#9551](https://github.com/openemr/openemr/issues/9551)) +- openemr api documentation ([#9827](https://github.com/openemr/openemr/issues/9827)) +- pt pay invoice via onetime token ([#8079](https://github.com/openemr/openemr/issues/8079)) +- support for redis sentinel via predis, step 1 of 2 ([#8410](https://github.com/openemr/openemr/pull/8410)) +- search and add external providers with nppes npi api ([#9276](https://github.com/openemr/openemr/issues/9276)) + + +### Fixed +- "Retrieve" is sometimes misspelled "retrive" ([#8595](https://github.com/openemr/openemr/issues/8595)) +- Add Care Team Management for ONC 2025 Compliance ([#8693](https://github.com/openemr/openemr/issues/8693)) +- Add Sent Fax Tracking to etherFAX Module ([#9850](https://github.com/openemr/openemr/issues/9850)) +- Add USCDI v5 Average Blood Pressure Observation to CCDA Vitals Organizer ([#9571](https://github.com/openemr/openemr/issues/9571)) +- Add reason code to our R4 FHIRCarePlan generated domain ([#9262](https://github.com/openemr/openemr/issues/9262)) +- Advance Directives USCDI v5 FHIR Observation ([#9224](https://github.com/openemr/openemr/issues/9224)) +- Argument passed to class with no constructor ([#8814](https://github.com/openemr/openemr/issues/8814)) +- Attempt to migrate USPS Address Verification to API v3 Tried to switc… ([#9132](https://github.com/openemr/openemr/pull/9132)) +- CCDA ONC 2025 Updates ([#8647](https://github.com/openemr/openemr/issues/8647)) +- Care plan is missing an end date and status. ([#8909](https://github.com/openemr/openemr/issues/8909)) +- Consistently initialize $string in toString implementations ([#8449](https://github.com/openemr/openemr/issues/8449)) +- Cover EventAuditLogger with tests ([#8678](https://github.com/openemr/openemr/issues/8678)) +- CryptoGen needs an interface ([#8744](https://github.com/openemr/openemr/issues/8744)) +- Current Bugs Demographic Related Person ([#9414](https://github.com/openemr/openemr/issues/9414)) +- Dockerfile healthchecks for openemr ([#8432](https://github.com/openemr/openemr/issues/8432)) +- Enable Dependabot Version Upgrades for Github Actions ([#8438](https://github.com/openemr/openemr/issues/8438)) +- Enhance FHIR Coverage to US Core 8.0 / USCDI v5 Compliance ([#9264](https://github.com/openemr/openemr/issues/9264)) +- EventAuditLogger unnecessarily instantiates CryptoGen when disabled ([#8652](https://github.com/openemr/openemr/issues/8652)) +- Feat openemr 9564 api documentation ([#9569](https://github.com/openemr/openemr/pull/9569)) +- Finish ONC USCDI v5 US Core 8.0 Service Request ([#9107](https://github.com/openemr/openemr/issues/9107)) +- Fix PHP 8.0+ undefined array key 'ins' warning in ins_search.php ([#9518](https://github.com/openemr/openemr/pull/9518)) +- Fix PHP 8.0+ warnings for undefined Smarty variables in prescription lookup ([#9517](https://github.com/openemr/openemr/pull/9517)) +- Fix SQL error when sorting by Allergies/Medical Problems without diagnosis filter ([#9519](https://github.com/openemr/openemr/pull/9519)) +- Fix sporadic test failure in HMAC validation tests ([#9536](https://github.com/openemr/openemr/pull/9536)) +- Fix undefined array key 'site_id' in authCloseSession() ([#9522](https://github.com/openemr/openemr/pull/9522)) +- Fix undefined array key warnings in CAMOS form POST handling ([#9523](https://github.com/openemr/openemr/pull/9523)) +- Fix undefined array key warnings in transfer_summary form ([#9521](https://github.com/openemr/openemr/pull/9521)) +- Fix undefined variable $odrstmt in clinical_reports.php ([#9520](https://github.com/openemr/openemr/pull/9520)) +- Fix undefined variables in find_code_dynamic_ajax.php when $what == 'codes' ([#9524](https://github.com/openemr/openemr/pull/9524)) +- Fixes #9552 remove debugger statement ([#9553](https://github.com/openemr/openemr/pull/9553)) +- Fixes #9617 prescription encounter display. ([#9618](https://github.com/openemr/openemr/pull/9618)) +- Fixes #9702 swagger bugs ([#9703](https://github.com/openemr/openemr/pull/9703)) +- Fixes #9756 related person endpoint ([#9758](https://github.com/openemr/openemr/pull/9758)) +- Fixes to CI Caching ([#8672](https://github.com/openemr/openemr/issues/8672)) +- Flow Board Colors are unset when you set them ([#9401](https://github.com/openemr/openemr/issues/9401)) +- Healthchecks for docker-compose used in ci/tests ([#8399](https://github.com/openemr/openemr/issues/8399)) +- Implement health checks in docker ([#8368](https://github.com/openemr/openemr/issues/8368)) +- Implement stand-alone SDOH (USCDI v3) history form ([#8849](https://github.com/openemr/openemr/issues/8849)) +- Incorporate multi-file composition with ci docker test environments ([#8426](https://github.com/openemr/openemr/issues/8426)) +- Introduce tests that can run without the database ([#8725](https://github.com/openemr/openemr/issues/8725)) +- Inventory lot add/edit JS errors ([#9912](https://github.com/openemr/openemr/issues/9912)) +- Missing couchdb volume causes rsync error during openemr startup in development-easy-light setup ([#8593](https://github.com/openemr/openemr/issues/8593)) +- Missing support for tests Specimen collection USCDI v5 ([#9000](https://github.com/openemr/openemr/issues/9000)) +- Multiple FHIR services missing or not passing $puuidBind parameter for patient compartment security ([#9160](https://github.com/openemr/openemr/issues/9160)) +- Persisted Data Not Saving Integer 0/False Values in ORDataObject ([#9629](https://github.com/openemr/openemr/issues/9629)) +- Portal History form Family diagnosis code session error ([#9621](https://github.com/openemr/openemr/issues/9621)) +- Portal Phreezable controller causing errors ([#9727](https://github.com/openemr/openemr/issues/9727)) +- Provide video artifacts from e2e tests for easy debugging ([#8581](https://github.com/openemr/openemr/issues/8581)) +- Publish coverage reports for tests ([#8403](https://github.com/openemr/openemr/issues/8403)) +- Related Persons ([#8851](https://github.com/openemr/openemr/issues/8851)) +- Rename `sqlQuery` in `admin.php` to avoid confusion ([#8464](https://github.com/openemr/openemr/issues/8464)) +- Result of void function is used ([#8805](https://github.com/openemr/openemr/issues/8805)) +- Set Rector to Level 1 and PHP 8.1 ([#8600](https://github.com/openemr/openemr/issues/8600)) +- Simplify CI Test Runner using Matrix ([#8402](https://github.com/openemr/openemr/issues/8402)) +- Status Badges report no status ([#8413](https://github.com/openemr/openemr/issues/8413)) +- Swagger docs normalization ([#9196](https://github.com/openemr/openemr/issues/9196)) +- Tidy up CryptoGen docblocks and types ([#8742](https://github.com/openemr/openemr/issues/8742)) +- US Core 8.0 & USCDI v5 Goal Profile Migration Guide ([#9139](https://github.com/openemr/openemr/issues/9139)) +- US Core 8.0 & USCDI v5 Medication Implementation Gap Analysis ([#9159](https://github.com/openemr/openemr/issues/9159)) +- US Core 8.0 USCDI v3-5 FHIR Observation Treatment Intervention Preference - Observation Care Experience Preference ([#9295](https://github.com/openemr/openemr/issues/9295)) +- USCDI v5 and US Core 8.0 Compliance Gap Analysis Procedure ([#8968](https://github.com/openemr/openemr/issues/8968)) +- Unable to set Compatibility mode flag OEGlobalsBag ([#9681](https://github.com/openemr/openemr/issues/9681)) +- Update CarePlan FHIR to U.S Core 8.0 and USCDI v5 ([#9195](https://github.com/openemr/openemr/issues/9195)) +- Update NewCrop/Ensora eRx Site Address ([#9745](https://github.com/openemr/openemr/issues/9745)) +- Update add_edit_event.php to allow repeat every 7th, 8th, 9th ([#7968](https://github.com/openemr/openemr/pull/7968)) +- Update and refactor CareTeam Services. Support U.S Core 8.0 and USCDI v5 ([#9189](https://github.com/openemr/openemr/issues/9189)) +- Update eCQM measures from 2022 to 2023 reporting period ([#8749](https://github.com/openemr/openemr/issues/8749)) +- Upgrade FHIR Laboratory Resources to USCDI v5 / US Core 8.0 ([#9105](https://github.com/openemr/openemr/issues/9105)) +- [CI][API][Docs] Added API docs freshness check ([#9232](https://github.com/openemr/openemr/pull/9232)) +- allow appointment repeat every 7th, 8th, 9th occurrences ([#7967](https://github.com/openemr/openemr/issues/7967)) +- bug openemr 9619 fix gender unk code ([#9622](https://github.com/openemr/openemr/pull/9622)) +- Clinical Notes Add Item for existing record clones previous author in author field instead of using current user. ([#9530](https://github.com/openemr/openemr/issues/9530)) +- Fix openemr:generate-access-token when no offline_access scope is present ([#9620](https://github.com/openemr/openemr/issues/9620)) +- Patient Gender should come from valueset https://hl7.org/fhir/R4/valueset-administrative-gender.html ([#9619](https://github.com/openemr/openemr/issues/9619)) +- RelatedPerson not respecting puuidBind and missing from swagger ([#9756](https://github.com/openemr/openemr/issues/9756)) +- Save & Continue Procedure Order with Specimen did not save specimen for new order, had to enter and save data again on existing order for save to work ([#9528](https://github.com/openemr/openemr/issues/9528)) +- Swagger tool v2 scopes missing, invalid $docref operation, trusted user save bug ([#9702](https://github.com/openemr/openemr/issues/9702)) +- add_edit_issue_medication_fragment.php has a javascript debugger statement left in the file ([#9552](https://github.com/openemr/openemr/issues/9552)) +- billing related causes codes missing ([#9668](https://github.com/openemr/openemr/issues/9668)) +- delete glasses prescription ([#9614](https://github.com/openemr/openemr/issues/9614)) +- encounter select list on prescription edit is showing as a non-editable number instead of a select dropdown ([#9617](https://github.com/openemr/openemr/issues/9617)) +- unit testing has a few deprecations ([#8421](https://github.com/openemr/openemr/issues/8421)) +- use custom temp directory for htmlpurify for OnsiteDocumentController.php ([#9583](https://github.com/openemr/openemr/issues/9583)) +- bump setup-node action from v3 to v4 ([#8441](https://github.com/openemr/openemr/issues/8441)) +- ccdaservice doesn't build on node 24 ([#8418](https://github.com/openemr/openemr/issues/8418)) +- etherFAX display renders faxes in wrong tab ([#9725](https://github.com/openemr/openemr/issues/9725)) +- feat openemr 9551 migrate careteam ([#9563](https://github.com/openemr/openemr/pull/9563)) +- isSmsEnabled is defined and not nullable ([#8816](https://github.com/openemr/openemr/issues/8816)) +- phpstan whitespace after ?> ([#8800](https://github.com/openemr/openemr/issues/8800)) +- reduce repetition in ci docker-compose files ([#8416](https://github.com/openemr/openemr/issues/8416)) +- remove ubuntu package scripts ([#8519](https://github.com/openemr/openemr/issues/8519)) +- replace tiff.js with utif2 for fax ([#8210](https://github.com/openemr/openemr/pull/8210)) +- unpinned, unmaintained dependency on summernote-plugins repo ([#8383](https://github.com/openemr/openemr/issues/8383)) + + +### Changed +- Related Person Save ([#9562](https://github.com/openemr/openemr/issues/9562)) +- Product Email Registration Error, GenericProductRegistrationException ([#9680](https://github.com/openemr/openemr/issues/9680)) +- :parseToTokens() to use preg_split and fix PHP 8.x warnings ([#9525](https://github.com/openemr/openemr/pull/9525)) +- bump express from 4.22.0 to 4.22.1 in /ccdaservice ([#9861](https://github.com/openemr/openemr/pull/9861)) +- bump jspdf from 3.0.3 to 3.0.4 ([#9582](https://github.com/openemr/openemr/pull/9582)) +- bump stylelint from 16.25.0 to 16.26.0 in the build-tools group ([#9581](https://github.com/openemr/openemr/pull/9581)) +- Backport to rel-704: Merge commit from fork ([#9722](https://github.com/openemr/openemr/issues/9722)) +- Backport to rel-704: Merge commit from fork ([#9697](https://github.com/openemr/openemr/issues/9697)) +- Need to keep robthree/twofactorauth at 2.1.0 since higher requires php > 8.1 ([#8256](https://github.com/openemr/openemr/issues/8256)) +- add mariadb 11.8 LTS and mysql 9.3 to ci ([#8440](https://github.com/openemr/openemr/issues/8440)) +- add mariadb 12.0 to ci ([#9193](https://github.com/openemr/openemr/issues/9193)) +- add php 8.6-dev to pertinent ci ([#9227](https://github.com/openemr/openemr/issues/9227)) +- add php dependencies to composer json ([#8708](https://github.com/openemr/openemr/issues/8708)) +- add php extensions dom and imagick to dev-php-fpm ci dockers ([#9335](https://github.com/openemr/openemr/issues/9335)) +- also support mailpit in insane dev environment ([#9267](https://github.com/openemr/openemr/issues/9267)) +- api docs freshness test failing ([#9586](https://github.com/openemr/openemr/issues/9586)) +- increment crypto to version 7 and pertinent testing changes ([#8820](https://github.com/openemr/openemr/issues/8820)) +- migrate core ci alpine stuff to php 8.4 (openemr/openemr:flex-3.21) ([#8406](https://github.com/openemr/openemr/issues/8406)) +- migrated onc-certification-g10-test-kit repo to openemr org ([#8607](https://github.com/openemr/openemr/issues/8607)) +- php 8.5-rc for ci and 8.6-dev for ci and insane dev environment ([#8935](https://github.com/openemr/openemr/issues/8935)) +- prep docker for auto upgrade for future 7.0.4 release ([#9577](https://github.com/openemr/openemr/issues/9577)) +- update acknowledgments for planned 7.0.4 release ([#9885](https://github.com/openemr/openemr/issues/9885)) +- update api docs ([#9670](https://github.com/openemr/openemr/pull/9670)) +- update readme and ci to nodejs 22 ([#8654](https://github.com/openemr/openemr/issues/8654)) +- upgrade phpunit/phpunit at 10 before 2026 since higher requires php > 8.1 #8254 ([#8276](https://github.com/openemr/openemr/issues/8276)) +- drop php 8.1 support, update league/csv, robthree/twofactorauth, phpunit/phpunit ([#8274](https://github.com/openemr/openemr/issues/8274)) +- bump actions/checkout from 5 to 6 ([#9579](https://github.com/openemr/openemr/pull/9579)) +- fix older php-fpm dockers (update to newer debian version) ([#8605](https://github.com/openemr/openemr/issues/8605)) +- fix openemr/dev-php-fpm dockers ([#8578](https://github.com/openemr/openemr/issues/8578)) +- fix openemr/dev-php-fpm:pre-build-dev-85 docker ([#8574](https://github.com/openemr/openemr/issues/8574)) +- fix edge case in functional testing when adding user and fix inferno skipping logic ([#8604](https://github.com/openemr/openemr/issues/8604)) +- asset loading errors for header ([#9492](https://github.com/openemr/openemr/pull/9492)) +- couple function void fixes ([#8609](https://github.com/openemr/openemr/issues/8609)) +- crypto encrypt fix to maintain behavior of encryption of empty string when empty string or null ([#8902](https://github.com/openemr/openemr/issues/8902)) +- dependabot fix for selenium ([#8765](https://github.com/openemr/openemr/issues/8765)) +- ignore submodules for composer.json dependabot ([#8780](https://github.com/openemr/openemr/issues/8780)) +- minor escaping fix in add_edit_issue.php ([#9246](https://github.com/openemr/openemr/issues/9246)) +- remove requirement of opcache php extension from composer ([#9343](https://github.com/openemr/openemr/issues/9343)) +- unit testing for Patient Controller Security ([#9731](https://github.com/openemr/openemr/issues/9731)) + + ## [7.0.3.4](https://github.com/openemr/openemr/milestone/21?closed=1) - 2025-05-18 ### Added From c4d18356eb0e0440cfb93da9cc6e7bb6abd73e54 Mon Sep 17 00:00:00 2001 From: Jerry Padgett Date: Wed, 24 Dec 2025 22:28:22 -0500 Subject: [PATCH 009/139] Refactor Portal CCDA actions (#9950) * Refactor Portal CCDA actions Remove API request for CCDA view to use CCM services. * refactor for new portal CCD actions supplanting API request for same actions. had goober help me ensure exceptions, translations and formatting. * woops * rector starting to get on my nerves. local want string cast but not get. local comes from current master * I refactored Laminas Zip to use Ziparchive similar to CdaDocument class. I could do some consolation and may do yet. I had claude run through and satirize to make our security gods happy. * satisfy new composer checker test. Trying to figure out where this is going. Shouldn't this be included in composer for the entire namespace? --- .composer-require-checker.json | 2 + ccdaservice/ccda_gateway.php | 123 +++--- .../Controller/EncountermanagerController.php | 127 +++++- src/Services/CDADocumentService.php | 415 ++++++++++-------- 4 files changed, 427 insertions(+), 240 deletions(-) diff --git a/.composer-require-checker.json b/.composer-require-checker.json index 3a7819199313..180af3932784 100644 --- a/.composer-require-checker.json +++ b/.composer-require-checker.json @@ -5,6 +5,8 @@ "BillingExport", "C_Document", "Carecoordination\\Model\\CarecoordinationTable", + "Carecoordination\\Model\\CcdaGenerator", + "Carecoordination\\Model\\EncounterccdadispatchTable", "FPDF_FONTPATH", "GenericProductRegistrationException", "IS_WINDOWS", diff --git a/ccdaservice/ccda_gateway.php b/ccdaservice/ccda_gateway.php index 1ff14cec1c29..fcbb35148f62 100644 --- a/ccdaservice/ccda_gateway.php +++ b/ccdaservice/ccda_gateway.php @@ -7,101 +7,120 @@ * @link https://www.open-emr.org * @author Jerry Padgett * @author Brady Miller - * @copyright Copyright (c) 2016-2022 Jerry Padgett + * @copyright Copyright (c) 2016-2025 Jerry Padgett * @copyright Copyright (c) 2019 Brady Miller * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 */ use OpenEMR\Common\Csrf\CsrfUtils; +use OpenEMR\Common\Logging\SystemLogger; use OpenEMR\Common\Session\SessionUtil; +use OpenEMR\Core\OEGlobalsBag; use OpenEMR\Services\CDADocumentService; -// authenticate for portal or main- never know where it gets used // Will start the (patient) portal OpenEMR session/cookie. // Need access to classes, so run autoloader now instead of in globals.php. $GLOBALS['already_autoloaded'] = true; -require_once(__DIR__ . "/../vendor/autoload.php"); +require_once __DIR__ . "/../vendor/autoload.php"; SessionUtil::portalSessionStart(); $sessionAllowWrite = true; -if (isset($_SESSION['pid']) && isset($_SESSION['patient_portal_onsite_two'])) { +if (isset($_SESSION['pid'], $_SESSION['patient_portal_onsite_two'])) { $pid = $_SESSION['pid']; $ignoreAuth = true; - require_once(__DIR__ . "/../interface/globals.php"); + require_once __DIR__ . "/../interface/globals.php"; define('IS_DASHBOARD', false); define('IS_PORTAL', $_SESSION['pid']); } else { SessionUtil::portalSessionCookieDestroy(); $ignoreAuth = false; - require_once(__DIR__ . "/../interface/globals.php"); - if (!isset($_SESSION['authUserID'])) { - $landingpage = "index.php"; - header('Location: ' . $landingpage); + require_once __DIR__ . "/../interface/globals.php"; + if (empty($_SESSION['authUserID'])) { + header('Location: index.php'); exit; } define('IS_DASHBOARD', $_SESSION['authUserID']); define('IS_PORTAL', false); } -if (!CsrfUtils::verifyCsrfToken($_GET["csrf_token_form"])) { +if (!CsrfUtils::verifyCsrfToken($_GET["csrf_token_form"] ?? '')) { CsrfUtils::csrfNotVerified(); } -if (empty($GLOBALS['ccda_alt_service_enable'])) { - die("Cda generation service turned off: Verify in Administration->Globals! Click back to return home."); // Die an honorable death!! -} -if (IS_PORTAL && $GLOBALS['ccda_alt_service_enable'] < 2) { - die("Cda generation service turned off: Verify in Administration->Globals! Click back to return home."); // Die an honorable death!! -} -if (IS_DASHBOARD && ($GLOBALS['ccda_alt_service_enable'] != 1 && $GLOBALS['ccda_alt_service_enable'] != 3)) { - die("Cda generation service turned off: Verify in Administration->Globals! Click back to return home."); // Die an honorable death!! -} - -if (!isset($_SESSION['site_id'])) { - $_SESSION ['site_id'] = 'default'; +if (!isServiceEnabled()) { + die(xlt("CDA generation service is disabled. Verify in Administration->Globals.")); } +$_SESSION['site_id'] ??= 'default'; session_write_close(); -$cdaService = new CDADocumentService(); +$action = $_REQUEST['action'] ?? ''; +$pid ??= 0; -if ($_REQUEST['action'] === 'dl') { - $ccda_xml = $cdaService->portalGenerateCCDZip($pid); - // download zip containing CCDA.xml, CCDA.html and cda.xsl files - header("Cache-Control: public"); - header("Content-Description: File Transfer"); - header("Content-Disposition: attachment; filename=SummaryofCare.zip"); - header("Content-Type: application/zip"); - header("Content-Transfer-Encoding: binary"); - echo $ccda_xml; - exit; -} -if ($_REQUEST['action'] === 'view') { - $ccda_xml = $cdaService->portalGenerateCCD($pid); - // CCM returns viewable CCD html file - // that displays to new tab opened from home - echo $ccda_xml; - exit; +try { + $cdaService = new CDADocumentService(); + + switch ($action) { + case 'dl': + case 'report_ccd_download': + sendZipDownload($cdaService->generateCCDZip($pid)); + break; + + case 'view': + echo $cdaService->generateCCDHtml($pid); + break; + + case 'report_ccd_view': + $html = $cdaService->generateCCDHtml($pid); + if (stripos($html, '/interface/login_screen.php') !== false) { + http_response_code(401); + echo xlt("Error: Not Authorized"); + exit; + } + echo $html; + break; + + default: + http_response_code(400); + die(xlt("Error: Invalid action requested.")); + } +} catch (Exception $e) { + (new SystemLogger())->errorLogCaller($e->getMessage(), ['action' => $action, 'pid' => $pid]); + http_response_code(500); + die(xlt("Error generating CDA document. Please contact support.")); } -if ($_REQUEST['action'] === 'report_ccd_view') { - $ccda_xml = $cdaService->generateCCDHtml($pid); - if (stripos($ccda_xml, '/interface/login_screen.php') !== false) { - echo(xlt("Error. Not Authorized.")); - exit; + +/** + * Check if CDA service is enabled for current context. + */ +function isServiceEnabled(): bool +{ + $setting = OEGlobalsBag::getInstance()->getInt('ccda_alt_service_enable', 0); + + if (empty($setting)) { + return false; + } + if (IS_PORTAL && $setting < 2) { + return false; + } + if (IS_DASHBOARD && $setting != 1 && $setting != 3) { + return false; } - echo $ccda_xml; - exit; + return true; } -if ($_REQUEST['action'] === 'report_ccd_download') { - $ccda_xml = $cdaService->generateCCDZip($pid); - // download zip containing CCDA.xml, CCDA.html and cda.xsl files + +/** + * Send ZIP file as download response. + */ +function sendZipDownload(string $content): void +{ header("Cache-Control: public"); header("Content-Description: File Transfer"); header("Content-Disposition: attachment; filename=SummaryofCare.zip"); header("Content-Type: application/zip"); header("Content-Transfer-Encoding: binary"); - echo $ccda_xml; + header("Content-Length: " . strlen($content)); + echo $content; exit; } -die(xlt("Error. Nothing to do.")); diff --git a/interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncountermanagerController.php b/interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncountermanagerController.php index cba3ec89335c..45d318637abb 100644 --- a/interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncountermanagerController.php +++ b/interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncountermanagerController.php @@ -21,7 +21,6 @@ use Carecoordination\Model\CcdaUserPreferencesTransformer; use Carecoordination\Model\EncountermanagerTable; use DOMDocument; -use Laminas\Filter\Compress\Zip; use Laminas\Hydrator\Exception\RuntimeException; use Laminas\Mvc\Controller\AbstractActionController; use Laminas\View\Model\JsonModel; @@ -304,6 +303,12 @@ public function buildCCDAHtml($content) public function downloadAction() { $id = $this->getRequest()->getQuery('id'); + // Validate that id is numeric to prevent path traversal + if (!is_numeric($id)) { + throw new \InvalidArgumentException('Invalid document ID'); + } + $id = (int)$id; + $dir = sys_get_temp_dir() . "/CCDA_$id/"; $filename = "CCDA_$id.xml"; $filename_html = "CCDA_$id.html"; @@ -331,21 +336,20 @@ public function downloadAction() copy(__DIR__ . "/../../../../../public/xsl/cda.xsl", $dir . "CDA.xsl"); - $zip = new Zip(); - $zip->setArchive($zip_dir . $zip_name); - $zip->compress($dir); + $this->zipDirectory($dir, $zip_dir . $zip_name); ob_clean(); header("Cache-Control: public"); header("Content-Description: File Transfer"); - header("Content-Disposition: attachment; filename=$zip_name"); + // Sanitize filename for Content-Disposition header + header("Content-Disposition: attachment; filename=\"" . $this->sanitizeFilename($zip_name) . "\""); header("Content-Type: application/download"); header("Content-Transfer-Encoding: binary"); readfile($zip_dir . $zip_name); - // we need to unlink both the directory and the zip file once are done... as its a security hazard - // to have these files just hanging around in a tmp folder + // Clean up temp files - both the zip and source directory unlink($zip_dir . $zip_name); + $this->deleteDirectory($dir); $view = new ViewModel(); $view->setTerminal(true); @@ -360,7 +364,6 @@ public function downloadallAction() $pids = $this->params('pids'); $document_type = $this->params('document_type') ?? ''; if ($pids != '') { - $zip = new Zip(); $parent_dir = sys_get_temp_dir() . "/CCDA_Patient_Documents_" . time(); if (!is_dir($parent_dir)) { if (!mkdir($parent_dir, true) && !is_dir($parent_dir)) { @@ -370,7 +373,7 @@ public function downloadallAction() } $dir = $parent_dir . "/"; - $arr = explode('|', (string) $pids); + $arr = explode('|', (string)$pids); foreach ($arr as $row) { $pid = $row; $ids = $this->getEncountermanagerTable()->getFileID($pid, 2); @@ -388,7 +391,10 @@ public function downloadallAction() } /* let's not have a dir per patient for now! though we'll keep for awhile. * $dir = $parent_dir . "/CCDA_{$row_inner['lname']}_{$row_inner['fname']}/";*/ - $filename = "CCDA_{$row_inner['lname']}_{$row_inner['fname']}"; + // Sanitize patient names for safe filesystem use + $safeLname = $this->sanitizeFilename($row_inner['lname'] ?? ''); + $safeFname = $this->sanitizeFilename($row_inner['fname'] ?? ''); + $filename = "CCDA_{$safeLname}_{$safeFname}"; if (!empty($doc_type) && in_array($doc_type, self::VALID_CCDA_DOCUMENT_TYPES)) { $filename .= "_" . $doc_type; } @@ -423,20 +429,20 @@ public function downloadallAction() $zip_name .= "_All"; } $zip_name .= "_" . date("Y_m_d_His") . ".zip"; - $zip->setArchive($zip_dir . $zip_name); - $zip->compress($parent_dir); + $this->zipDirectory($parent_dir, $zip_dir . $zip_name); ob_clean(); header("Cache-Control: public"); header("Content-Description: File Transfer"); - header("Content-Disposition: attachment; filename=$zip_name"); + // Sanitize filename for Content-Disposition header + header("Content-Disposition: attachment; filename=\"" . $this->sanitizeFilename($zip_name) . "\""); header("Content-Type: application/download"); header("Content-Transfer-Encoding: binary"); readfile($zip_dir . $zip_name); - // we need to unlink both the directory and the zip file once are done... as its a security hazard - // to have these files just hanging around in a tmp folder + // Clean up temp files - both the zip and source directory unlink($zip_dir . $zip_name); + $this->deleteDirectory($parent_dir); $view = new ViewModel(); $view->setTerminal(true); @@ -474,4 +480,95 @@ public function getEncountermanagerTable() { return $this->encountermanagerTable; } + + /** + * Sanitize a string for safe use in filenames and HTTP Content-Disposition headers. + * Preserves patient name readability while removing dangerous characters. + * + * @param string $name The string to sanitize + * @return string Sanitized string safe for filesystem and header use + */ + private function sanitizeFilename(string $name): string + { + // Remove null bytes and path traversal sequences + $name = str_replace(["\0", '..'], '', $name); + // Remove directory separators + $name = str_replace(['/', '\\'], '', $name); + // Remove characters that break Content-Disposition headers (newlines, quotes) + $name = preg_replace('/[\r\n"\']/', '', $name); + // Replace any remaining non-safe characters with underscore + // Allow: alphanumeric, space, underscore, hyphen, period, and common intl chars + $name = preg_replace('/[^\p{L}\p{N} _.\-]/u', '_', (string) $name); + // Collapse multiple underscores/spaces + $name = preg_replace('/[_ ]+/', '_', (string) $name); + // Trim underscores from ends + return trim((string) $name, '_'); + } + + /** + * Recursively delete a directory and all its contents. + * + * @param string $dir Directory path to delete + * @return void + */ + private function deleteDirectory(string $dir): void + { + if (!is_dir($dir)) { + return; + } + $iterator = new \RecursiveIteratorIterator( + new \RecursiveDirectoryIterator($dir, \FilesystemIterator::SKIP_DOTS), + \RecursiveIteratorIterator::CHILD_FIRST + ); + foreach ($iterator as $file) { + /** @var \SplFileInfo $file */ + if ($file->isDir()) { + rmdir($file->getPathname()); + } else { + unlink($file->getPathname()); + } + } + rmdir($dir); + } + + /** + * Replacement for Laminas\Filter\Compress\Zip::compress() using PHP's ZipArchive. + * + * @param string $sourceDir Directory to zip (contents included recursively) + * @param string $zipFilePath Full path to resulting .zip file + * @return void + */ + private function zipDirectory(string $sourceDir, string $zipFilePath): void + { + $zip = new \ZipArchive(); + if ($zip->open($zipFilePath, \ZipArchive::CREATE | \ZipArchive::OVERWRITE) !== true) { + throw new \RuntimeException(sprintf('Unable to create ZIP archive "%s"', $zipFilePath)); + } + + $sourceDir = rtrim($sourceDir, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR; + + $iterator = new \RecursiveIteratorIterator( + new \RecursiveDirectoryIterator( + $sourceDir, + \FilesystemIterator::SKIP_DOTS | \FilesystemIterator::FOLLOW_SYMLINKS + ), + \RecursiveIteratorIterator::SELF_FIRST + ); + + foreach ($iterator as $fileInfo) { + /** @var \SplFileInfo $fileInfo */ + $filePath = $fileInfo->getPathname(); + $localName = substr($filePath, strlen($sourceDir)); + + if ($fileInfo->isDir()) { + if ($localName !== '') { + $zip->addEmptyDir($localName); + } + } else { + $zip->addFile($filePath, $localName); + } + } + + $zip->close(); + } } diff --git a/src/Services/CDADocumentService.php b/src/Services/CDADocumentService.php index dc4075d7ee79..5f162df54ba2 100644 --- a/src/Services/CDADocumentService.php +++ b/src/Services/CDADocumentService.php @@ -6,250 +6,319 @@ * @package OpenEMR * @link https://www.open-emr.org * @author Jerry Padgett - * @copyright Copyright (c) 2021 Jerry Padgett + * @copyright Copyright (c) 2021-2026 Jerry Padgett * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 */ namespace OpenEMR\Services; +use Application\Model\ApplicationTable; +use Carecoordination\Model\CcdaGenerator; +use Carecoordination\Model\EncounterccdadispatchTable; use CouchDB; +use DOMDocument; +use Exception; use OpenEMR\Common\Crypto\CryptoGen; -use OpenEMR\Common\Utils\NetworkUtils; +use OpenEMR\Common\Logging\SystemLogger; use OpenEMR\Common\Uuid\UuidRegistry; -use Symfony\Component\HttpClient\HttpClient; +use OpenEMR\Core\OEGlobalsBag; +use RuntimeException; +use XSLTProcessor; +use ZipArchive; /** * Class CDADocumentService * * @package OpenEMR\Services - * - * See interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncounterccdadispatchController.php - * indexAction() and interface/modules/zend_modules/public/index.php */ class CDADocumentService extends BaseService { - const TABLE_NAME = "ccda"; - protected string $serverUrl; - protected bool $verifySsl; - protected string|bool $caCert; + private const TABLE_NAME = "ccda"; + private const XSL_PATH = '/interface/modules/zend_modules/public/xsl/cda.xsl'; public function __construct() { parent::__construct(self::TABLE_NAME); UuidRegistry::createMissingUuidsForTables([self::TABLE_NAME]); - - // Determine the server URL for internal CCD generation - // Use the configured site address and apply appropriate SSL verification - - $this->serverUrl = $GLOBALS['qualified_site_addr']; - - $networkUtils = new NetworkUtils(); - if ($networkUtils->isLoopbackAddress($this->serverUrl)) { - // Loopback address - traffic never leaves the local machine - // SSL verification is always disabled for loopback (no security benefit, often fails) - $this->verifySsl = false; - $this->caCert = false; - } else { - // Non-loopback address (e.g., nginx sidecar, docker compose, kubernetes) - $this->verifySsl = (bool) ($GLOBALS['http_verify_ssl'] ?? true); - $this->caCert = $GLOBALS['http_ca_cert'] ?? false; // Use custom CA cert for self-signed certificates - } } - protected function createHttpClient() + /** + * Get the path to the CDA stylesheet. + */ + private function getXslPath(): string { - $config = [ - 'verify_host' => $this->verifySsl, - 'verify_peer' => $this->verifySsl, - ]; - - // If SSL verification is enabled and a custom CA cert is provided, use it - if ($this->verifySsl && $this->caCert && file_exists($this->caCert)) { - $config['cafile'] = $this->caCert; - } - - return HttpClient::create($config); + return OEGlobalsBag::getInstance()->get('fileroot') . self::XSL_PATH; } /** - * @param $pid + * @param int|string $pid * @return array|false|null */ - public function getLastCdaMeta($pid) + public function getLastCdaMeta($pid): false|array|null { $query = "SELECT cc.uuid, cc.date, pd.fname, pd.lname, pd.pid FROM ccda AS cc - LEFT JOIN patient_data AS pd ON pd.pid=cc.pid - WHERE cc.pid = ? - ORDER BY cc.id DESC LIMIT 1"; + LEFT JOIN patient_data AS pd ON pd.pid=cc.pid + WHERE cc.pid = ? + ORDER BY cc.id DESC LIMIT 1"; return sqlQuery($query, [$pid]); } /** - * @param $id + * @param string $id UUID * @return false|string */ - public function getFile($id) + public function getFile(string $id): false|string { - $query = "select couch_docid, couch_revid, ccda_data, encrypted from ccda where uuid=?"; + $query = "SELECT couch_docid, couch_revid, ccda_data, encrypted FROM ccda WHERE uuid = ?"; $row = sqlQuery($query, [$id]); $content = ''; - if (!empty($row)) { - if (!empty($row['couch_docid'])) { - $couch = new CouchDB(); - $resp = $couch->retrieve_doc($row['couch_docid']); - if ($row['encrypted']) { - $cryptoGen = new CryptoGen(); - $content = $cryptoGen->decryptStandard($resp->data, null, 'database'); - } else { - $content = base64_decode((string) $resp->data); - } - } elseif (!empty($row['ccda_data'])) { - $fccda = fopen($row['ccda_data'], "r"); - if ($row['encrypted']) { - $cryptoGen = new CryptoGen(); - $content = $cryptoGen->decryptStandard(fread($fccda, filesize($row['ccda_data'])), null, 'database'); - } else { - $content = fread($fccda, filesize($row['ccda_data'])); - } - fclose($fccda); + + if (empty($row)) { + return $content; + } + + if (!empty($row['couch_docid'])) { + $couch = new CouchDB(); + $resp = $couch->retrieve_doc($row['couch_docid']); + if ($row['encrypted']) { + $cryptoGen = new CryptoGen(); + $content = $cryptoGen->decryptStandard($resp->data, null, 'database'); + } else { + $content = base64_decode((string)$resp->data); + } + } elseif (!empty($row['ccda_data'])) { + $fileData = file_get_contents($row['ccda_data']); + if ($fileData === false) { + return ''; } + if ($row['encrypted']) { + $cryptoGen = new CryptoGen(); + $content = $cryptoGen->decryptStandard($fileData, null, 'database'); + } else { + $content = $fileData; + } + } + + return $content; + } + + /** + * Generate CCDA XML using all documented components. + * + * @param int|string $pid Patient ID + * @return string CCDA XML content + * @throws Exception + */ + public function generateCCDXml($pid): string + { + $dispatchTable = new EncounterccdadispatchTable(new ApplicationTable()); + $ccdaGenerator = new CcdaGenerator($dispatchTable); + $result = $ccdaGenerator->generate( + $pid, + null, + null, + '0', + '1', + '0', + null, + null, + 'patient', + '', + 'ccd', + null, + [] + ); + $content = $result->getContent(); + unset($result); + + if (str_starts_with($content, 'ERROR:')) { + (new SystemLogger())->errorLogCaller("Error generating CCDA", ['message' => $content]); + throw new Exception(xlt("Error generating CCDA") . ": " . $content); } return $content; } /** - * @param $pid - * @return string + * Generate CCDA as HTML. + * + * @param int|string $pid Patient ID + * @return string HTML content + * @throws Exception */ public function generateCCDHtml($pid): string { - $url = $this->serverUrl . "/interface/modules/zend_modules/public/encounterccdadispatch"; - $httpClient = $this->createHttpClient(); - $response = $httpClient->request('GET', $url, [ - 'query' => [ - 'combination' => $pid, - 'recipient' => 'self', - 'view' => '1', - 'site' => $_SESSION ['site_id'], - 'sent_by_app' => 'core_api', - 'me' => session_id() - ] - ]); - - $status = $response->getStatusCode(); // @todo validate - - return $response->getContent(); + $content = $this->generateCCDXml($pid); + return $this->xmlToHtmlContent($content); } /** - * @param $pid - * @return string + * Generate CCDA as a ZIP bundle containing XML, HTML, and XSL. + * + * @param int|string $pid Patient ID + * @return string ZIP file contents + * @throws Exception */ - public function generateCCDXml($pid): string + public function generateCCDZip($pid): string { - $url = $this->serverUrl . "/interface/modules/zend_modules/public/encounterccdadispatch"; - $httpClient = $this->createHttpClient(); - $response = $httpClient->request('GET', $url, [ - 'query' => [ - 'combination' => $pid, - 'recipient' => 'patient', - 'view' => '0', - 'hiehook' => '1', - 'sent_by_app' => 'core_api', - 'me' => session_id() - ] - ]); - - $status = $response->getStatusCode(); // @todo validate - - return $response->getContent(); + $content = $this->generateCCDXml($pid); + return $this->generateCCDAZipBundle($content); } /** - * @param $pid - * @return string + * Create a ZIP bundle from CCDA XML content. + * + * @param string $content CCDA XML content + * @return string ZIP file contents + * @throws Exception */ - public function portalGenerateCCD($pid): string + public function generateCCDAZipBundle(string $content): string { - $url = $this->serverUrl . "/interface/modules/zend_modules/public/encounterccdadispatch"; - $httpClient = $this->createHttpClient(); - $response = $httpClient->request('GET', $url, [ - 'query' => [ - 'combination' => $pid, - 'recipient' => 'patient', - 'view' => '1', - 'me' => session_id(),// to authenticate in CCM. Portal only. - 'site' => $_SESSION ['site_id'] - ] - ]); - - $status = $response->getStatusCode(); // @todo validate - - return $response->getContent(); + $xslSource = $this->getXslPath(); + if (!file_exists($xslSource)) { + throw new RuntimeException(xlt("CDA stylesheet not found")); + } + + $uniqueId = bin2hex(random_bytes(16)); + $tempDir = sys_get_temp_dir(); + $parentDir = $tempDir . "/CCDA_" . $uniqueId; + $zipPath = $tempDir . "/CCDA_" . $uniqueId . ".zip"; + + try { + if (!mkdir($parentDir, 0700, true) && !is_dir($parentDir)) { + throw new RuntimeException(xlt("Failed to create temporary directory")); + } + + $filename = "CCDA_ccd_" . date("Y_m_d_His"); + $filenameXml = $filename . ".xml"; + $filenameHtml = $filename . ".html"; + + if (file_put_contents($parentDir . "/" . $filenameXml, $content) === false) { + throw new RuntimeException(xlt("Failed to write XML file")); + } + + $htmlContent = $this->xmlToHtmlContent($content); + if (file_put_contents($parentDir . "/" . $filenameHtml, $htmlContent) === false) { + throw new RuntimeException(xlt("Failed to write HTML file")); + } + + if (!copy($xslSource, $parentDir . "/CDA.xsl")) { + throw new RuntimeException(xlt("Failed to copy stylesheet")); + } + + $zip = new ZipArchive(); + $zipResult = $zip->open($zipPath, ZipArchive::CREATE | ZipArchive::OVERWRITE); + if ($zipResult !== true) { + throw new RuntimeException(xlt("Failed to create ZIP file") . " (code: $zipResult)"); + } + + $zip->addFile($parentDir . "/" . $filenameXml, $filenameXml); + $zip->addFile($parentDir . "/" . $filenameHtml, $filenameHtml); + $zip->addFile($parentDir . "/CDA.xsl", "CDA.xsl"); + + if (!$zip->close()) { + throw new RuntimeException(xlt("Failed to finalize ZIP file")); + } + + $zipContent = file_get_contents($zipPath); + if ($zipContent === false) { + throw new RuntimeException(xlt("Failed to read ZIP file")); + } + + return $zipContent; + + } finally { + if (file_exists($zipPath)) { + unlink($zipPath); + } + $this->removeDirectory($parentDir); + } } /** - * @param $pid - * @return string + * Recursively remove a directory and its contents. + * + * @param string $dir Directory path */ - public function portalGenerateCCDZip($pid): string + private function removeDirectory(string $dir): void { - $parameterArray = [ - 'combination' => $pid, - 'components' => 'allergies|medications|problems|immunizations|procedures|results|plan_of_care|vitals|social_history|encounters|functional_status|referral|instructions|medical_devices|goals', - 'downloadccda' => 'download_ccda', - 'latestccda' => '0', - 'send_to' => 'download_all', - 'sent_by_app' => 'portal', - 'ccda_pid' => [0 => $pid], - 'view' => 0, - 'recipient' => 'patient', - 'site' => $_SESSION ['site_id'], - ]; - $url = $this->serverUrl . "/interface/modules/zend_modules/public/encounterccdadispatch"; - $httpClient = $this->createHttpClient(); - $response = $httpClient->request('POST', $url, [ - 'query' => ['me' => session_id()], // to authenticate in CCM. Portal only. - 'body' => $parameterArray - ]); - - $status = $response->getStatusCode(); // @todo validate - - return $response->getContent(); + if (!is_dir($dir)) { + return; + } + + $items = scandir($dir); + foreach ($items as $item) { + if ($item === '.' || $item === '..') { + continue; + } + $path = $dir . DIRECTORY_SEPARATOR . $item; + if (is_dir($path)) { + $this->removeDirectory($path); + } else { + unlink($path); + } + } + rmdir($dir); } /** - * Complete zip of xml, html version - * when called within an openemr authorized session. + * Transform CCDA XML to HTML using XSL stylesheet. * - * @param $pid - * @return string + * @param string $content CCDA XML content + * @return string HTML content + * @throws Exception */ - public function generateCCDZip($pid): string + private function xmlToHtmlContent(string $content): string { - $parameterArray = [ - 'combination' => $pid, - 'components' => 'allergies|medications|problems|immunizations|procedures|results|plan_of_care|vitals|social_history|encounters|functional_status|referral|instructions|medical_devices|goals', - 'downloadccda' => 'download_ccda', - 'latestccda' => '0', - 'send_to' => 'download_all', - 'sent_by_app' => 'core_api', - 'ccda_pid' => [0 => $pid], - 'view' => 0, - 'recipient' => 'self', - 'site' => $_SESSION['site_id'], - ]; - $url = $this->serverUrl . "/interface/modules/zend_modules/public/encounterccdadispatch"; // add for debug ?XDEBUG_SESSION=PHPSTORM - $httpClient = $this->createHttpClient(); - $response = $httpClient->request('POST', $url, [ - 'query' => ['me' => session_id()], - 'body' => $parameterArray - ]); - - $status = $response->getStatusCode(); // @todo validate - - return $response->getContent(); + $sheet = $this->getXslPath(); + if (!file_exists($sheet)) { + throw new RuntimeException(xlt("CDA stylesheet not found")); + } + + $xml = simplexml_load_string($content); + if ($xml === false) { + $errors = libxml_get_errors(); + libxml_clear_errors(); + (new SystemLogger())->errorLogCaller("Failed to parse CCDA XML", ['errors' => $errors]); + throw new RuntimeException(xlt("Failed to parse CCDA XML")); + } + + $xsl = new DOMDocument(); + if (!$xsl->load($sheet)) { + throw new RuntimeException(xlt("Failed to load CDA stylesheet")); + } + + $proc = new XSLTProcessor(); + if (!$proc->importStyleSheet($xsl)) { + throw new RuntimeException(xlt("Failed to import CDA stylesheet")); + } + + $uniqueId = bin2hex(random_bytes(16)); + $outputFile = sys_get_temp_dir() . '/cda_html_' . $uniqueId . '.html'; + + try { + $result = $proc->transformToURI($xml, $outputFile); + if ($result === false) { + throw new RuntimeException(xlt("Failed to transform CCDA to HTML")); + } + + $htmlContent = file_get_contents($outputFile); + if ($htmlContent === false) { + throw new RuntimeException(xlt("Failed to read transformed HTML")); + } + + return $htmlContent; + + } finally { + if (file_exists($outputFile)) { + if (!unlink($outputFile)) { + (new SystemLogger())->errorLogCaller( + "Failed to unlink temporary CDA output. This could expose PHI.", + ['filename' => $outputFile] + ); + } + } + } } } From d3b253d7c6b74f9ace589a401ea005a70571e162 Mon Sep 17 00:00:00 2001 From: steve waite Date: Fri, 26 Dec 2025 10:35:31 -0500 Subject: [PATCH 010/139] fix: current user dropdown hover state persisting (#9989) --- .../main/tabs/user_data_template.html.twig | 54 ++++++++++++------- 1 file changed, 36 insertions(+), 18 deletions(-) diff --git a/templates/interface/main/tabs/user_data_template.html.twig b/templates/interface/main/tabs/user_data_template.html.twig index 48611b64416e..392b6019b134 100644 --- a/templates/interface/main/tabs/user_data_template.html.twig +++ b/templates/interface/main/tabs/user_data_template.html.twig @@ -14,25 +14,43 @@ From 8ef279398f1f55dc205cf2f9c33b3bf8e8877a4d Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Sat, 27 Dec 2025 22:00:41 -0500 Subject: [PATCH 011/139] Remove dead code from verysimple library - 22 unused files (#9771) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> --- .../libs/verysimple/Authentication/Bcrypt.php | 169 -------- .../verysimple/Authentication/OAuthUtil.php | 62 --- .../Authentication/SimpleAccount.php | 50 --- .../verysimple/DB/Reflection/DBColumn.php | 239 ----------- .../verysimple/DB/Reflection/DBConnection.php | 197 --------- .../DB/Reflection/DBConnectionString.php | 29 -- .../verysimple/DB/Reflection/DBConstraint.php | 57 --- .../DB/Reflection/DBEventHandler.php | 88 ---- .../libs/verysimple/DB/Reflection/DBKey.php | 39 -- .../verysimple/DB/Reflection/DBSchema.php | 78 ---- .../verysimple/DB/Reflection/DBServer.php | 53 --- .../libs/verysimple/DB/Reflection/DBSet.php | 65 --- .../libs/verysimple/DB/Reflection/DBTable.php | 303 -------------- .../fwk/libs/verysimple/HTTP/HttpRequest.php | 381 ------------------ .../fwk/libs/verysimple/IO/FileHelper.php | 41 -- .../fwk/libs/verysimple/IO/FolderHelper.php | 56 --- .../verysimple/Phreeze/BladeRenderEngine.php | 135 ------- .../verysimple/Phreeze/SmartyRenderEngine.php | 99 ----- .../verysimple/Phreeze/TwigRenderEngine.php | 105 ----- .../fwk/libs/verysimple/String/NameValue.php | 84 ---- .../libs/verysimple/String/SimpleTemplate.php | 188 --------- .../libs/verysimple/Util/TextImageWriter.php | 104 ----- 22 files changed, 2622 deletions(-) delete mode 100644 portal/patient/fwk/libs/verysimple/Authentication/Bcrypt.php delete mode 100644 portal/patient/fwk/libs/verysimple/Authentication/OAuthUtil.php delete mode 100644 portal/patient/fwk/libs/verysimple/Authentication/SimpleAccount.php delete mode 100644 portal/patient/fwk/libs/verysimple/DB/Reflection/DBColumn.php delete mode 100644 portal/patient/fwk/libs/verysimple/DB/Reflection/DBConnection.php delete mode 100644 portal/patient/fwk/libs/verysimple/DB/Reflection/DBConnectionString.php delete mode 100644 portal/patient/fwk/libs/verysimple/DB/Reflection/DBConstraint.php delete mode 100644 portal/patient/fwk/libs/verysimple/DB/Reflection/DBEventHandler.php delete mode 100644 portal/patient/fwk/libs/verysimple/DB/Reflection/DBKey.php delete mode 100644 portal/patient/fwk/libs/verysimple/DB/Reflection/DBSchema.php delete mode 100644 portal/patient/fwk/libs/verysimple/DB/Reflection/DBServer.php delete mode 100644 portal/patient/fwk/libs/verysimple/DB/Reflection/DBSet.php delete mode 100644 portal/patient/fwk/libs/verysimple/DB/Reflection/DBTable.php delete mode 100644 portal/patient/fwk/libs/verysimple/HTTP/HttpRequest.php delete mode 100644 portal/patient/fwk/libs/verysimple/IO/FileHelper.php delete mode 100644 portal/patient/fwk/libs/verysimple/IO/FolderHelper.php delete mode 100644 portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php delete mode 100644 portal/patient/fwk/libs/verysimple/Phreeze/SmartyRenderEngine.php delete mode 100644 portal/patient/fwk/libs/verysimple/Phreeze/TwigRenderEngine.php delete mode 100644 portal/patient/fwk/libs/verysimple/String/NameValue.php delete mode 100644 portal/patient/fwk/libs/verysimple/String/SimpleTemplate.php delete mode 100644 portal/patient/fwk/libs/verysimple/Util/TextImageWriter.php diff --git a/portal/patient/fwk/libs/verysimple/Authentication/Bcrypt.php b/portal/patient/fwk/libs/verysimple/Authentication/Bcrypt.php deleted file mode 100644 index 6909839fab39..000000000000 --- a/portal/patient/fwk/libs/verysimple/Authentication/Bcrypt.php +++ /dev/null @@ -1,169 +0,0 @@ - - * $bcrypt = new Bcrypt(15); - * $hash = $bcrypt->hash('password'); - * $isGood = $bcrypt->verify('password', $hash); - * - */ -class Bcrypt -{ - private $randomState; - - /** - * Constructor - * - * @param int $rounds number of crypt rounds - * @throws Exception if bcrypt is not supported - */ - public function __construct(private $rounds = 12) - { - if (CRYPT_BLOWFISH != 1) { - throw new Exception("bcrypt not supported in this installation. See http://php.net/crypt"); - } - } - - /** - * Return true if the given hash is crypted with the blowfish algorithm - * - * @param string $hash - */ - static function isBlowfish($hash) - { - return str_starts_with($hash, '$2a$'); - } - - /** - * generate a hash - * - * @param - * string plain text input - */ - public function hash($input) - { - $hash = crypt((string) $input, (string) $this->getSalt()); - - if (strlen($hash) > 13) { - return $hash; - } - - return false; - } - - /** - * Verify if the input is equal to the hashed value - * - * @param - * string plain text input - * @param - * string hashed input - */ - public function verify($input, $existingHash) - { - $hash = crypt((string) $input, (string) $existingHash); - - return $hash === $existingHash; - } - - /** - * return an ascii-encoded 16 char salt - */ - private function getSalt() - { - $salt = sprintf('$2a$%02d$', $this->rounds); - - $bytes = $this->getRandomBytes(16); - - $salt .= $this->encodeBytes($bytes); - - return $salt; - } - - /** - * get random bytes to be used in random salts - * - * @param int $count - */ - private function getRandomBytes($count) - { - $bytes = ''; - - if (function_exists('openssl_random_pseudo_bytes') && (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN')) { // OpenSSL slow on Win - $bytes = openssl_random_pseudo_bytes($count); - } - - if ($bytes === '' && is_readable('/dev/urandom') && ($hRand = @fopen('/dev/urandom', 'rb')) !== false) { - $bytes = fread($hRand, $count); - fclose($hRand); - } - - if (strlen($bytes) < $count) { - $bytes = ''; - - if ($this->randomState === null) { - $this->randomState = microtime(); - if (function_exists('getmypid')) { - $this->randomState .= getmypid(); - } - } - - for ($i = 0; $i < $count; $i += 16) { - $this->randomState = md5(microtime() . $this->randomState); - - if (PHP_VERSION >= '5') { - $bytes .= md5($this->randomState, true); - } else { - $bytes .= pack('H*', md5($this->randomState)); - } - } - - $bytes = substr($bytes, 0, $count); - } - - return $bytes; - } - - /** - * ascii-encode used for converting random salt into legit ascii value - * - * @param string $input - */ - private function encodeBytes($input) - { - // The following is code from the PHP Password Hashing Framework - $itoa64 = './ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; - - $output = ''; - $i = 0; - do { - $c1 = ord($input [$i++]); - $output .= $itoa64 [$c1 >> 2]; - $c1 = ($c1 & 0x03) << 4; - if ($i >= 16) { - $output .= $itoa64 [$c1]; - break; - } - - $c2 = ord($input [$i++]); - $c1 |= $c2 >> 4; - $output .= $itoa64 [$c1]; - $c1 = ($c2 & 0x0f) << 2; - - $c2 = ord($input [$i++]); - $c1 |= $c2 >> 6; - $output .= $itoa64 [$c1]; - $output .= $itoa64 [$c2 & 0x3f]; - } while (1); - - return $output; - } -} diff --git a/portal/patient/fwk/libs/verysimple/Authentication/OAuthUtil.php b/portal/patient/fwk/libs/verysimple/Authentication/OAuthUtil.php deleted file mode 100644 index 175d59f5f0c9..000000000000 --- a/portal/patient/fwk/libs/verysimple/Authentication/OAuthUtil.php +++ /dev/null @@ -1,62 +0,0 @@ - $key, - 'consumer_secret' => $secret - ]; - $params = $params ?: []; - - OAuthStore::instance("2Leg", $options); - - // Obtain a request object for the request we want to make - $request = new OAuthRequester($url, $method, $params, $body); - - $sig = $request->sign($key, null, ''); - - $data = $request->signatureBaseString(); - - $url = substr(urldecode($data . '&oauth_signature=' . $request->calculateDataSignature($data, $secret, '', $signature_method)), strlen($method) + 1); - - $url = VerySimpleStringUtil::ReplaceFirst('&', '?', $url); - - return $url; - } -} diff --git a/portal/patient/fwk/libs/verysimple/Authentication/SimpleAccount.php b/portal/patient/fwk/libs/verysimple/Authentication/SimpleAccount.php deleted file mode 100644 index 598efeb584e4..000000000000 --- a/portal/patient/fwk/libs/verysimple/Authentication/SimpleAccount.php +++ /dev/null @@ -1,50 +0,0 @@ -_authenticated); - } - public function IsAuthorized($permission) - { - return $this->_authenticated; - } - public function Login($username, $password) - { - if ($this->_username == $username && $this->_password == $password) { - $this->_authenticated = true; - return true; - } - - return false; - } - - /** - * This is implemented only for Phreeze but is not utilized - * - * @param - * object - */ - public function Refresh($obj) - { - } -} diff --git a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBColumn.php b/portal/patient/fwk/libs/verysimple/DB/Reflection/DBColumn.php deleted file mode 100644 index 423bf36e7465..000000000000 --- a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBColumn.php +++ /dev/null @@ -1,239 +0,0 @@ -Table = & $table; - $this->Name = $row ["Field"]; - $this->NameWithoutPrefix = $row ["Field"]; - $this->Type = $typesize [0]; - $this->Unsigned = isset($sizesign [1]); - $this->Null = $row ["Null"]; - $this->Key = $row ["Key"]; - $this->Default = $row ["Default"]; - $this->Extra = $row ["Extra"]; - - // enums are a little different because they contain a list of legal values instead of a size limit - if ($this->IsEnum()) { - // enum size is in the format 'val1','val2',... - $this->Size = explode("','", substr($sizesign [0], 1, - 1)); - $this->MaxSize = 0; - } else { - $this->Size = $sizesign [0]; - // size may be saved for decimals as "n,n" so we need to convert that to an int - $tmp = explode(",", $this->Size); - $this->MaxSize = count($tmp) > 1 ? ($tmp [0] + $tmp [1]) : $this->Size; - } - - // if ($this->Key == "MUL") print " ########################## " . print_r($row,1) . " ########################## "; - } - - /** - * Return true if this column is an enum type - * - * @return boolean - */ - function IsEnum() - { - return $this->Type == 'enum'; - } - - /** - * Return the enum values if this column type is an enum - * - * @return array - */ - function GetEnumValues() - { - return $this->IsEnum() ? $this->Size : []; - } - - /** - * Return the Phreeze column constant that most closely matches this column type - * - * @return string - */ - function GetPhreezeType() - { - return FieldMap::GetConstantFromType($this->Type); - } - - /** - * Return the PHP variable type that most closely matches this column type - * - * @return string - */ - function GetPhpType() - { - $rt = $this->Type; - switch ($this->Type) { - case "smallint": - case "bigint": - case "tinyint": - case "mediumint": - $rt = "int"; - break; - case "varchar": - case "text": - case "tinytext": - $rt = "string"; - break; - case "date": - case "datetime": - $rt = "date"; - break; - case "decimal": - case "float": - $rt = "float"; - break; - default: - break; - } - - return $rt; - } - - /** - * Get the SQLite type that most closely matches this column type - * - * @return string - */ - function GetSqliteType() - { - $rt = $this->Type; - switch ($this->Type) { - case "int": - $rt = "integer"; - break; - case "smallint": - $rt = "integer"; - break; - case "tinyint": - $rt = "integer"; - break; - case "varchar": - $rt = "text"; - break; - case "text": - $rt = "text"; - break; - case "tinytext": - $rt = "text"; - break; - case "date": - $rt = "datetime"; - break; - case "datetime": - $rt = "datetime"; - break; - case "mediumint": - $rt = "integer"; - break; - case "bigint": - $rt = "integer"; - break; - case "decimal": - $rt = "real"; - break; - case "float": - $rt = "real"; - break; - default: - break; - } - - return $rt; - } - - /** - * Return the AS3/Flex type that most closely matches this column type - * - * @return string - */ - function GetFlexType() - { - $rt = $this->Type; - switch ($this->Type) { - case "int": - $rt = "int"; - break; - case "smallint": - $rt = "int"; - break; - case "tinyint": - $rt = $this->MaxSize > 1 ? "int" : "Boolean"; - break; - case "varchar": - $rt = "String"; - break; - case "text": - $rt = "String"; - break; - case "tinytext": - $rt = "String"; - break; - case "datetime": - $rt = "Date"; - break; - case "mediumint": - $rt = "int"; - break; - case "bigint": - $rt = "int"; - break; - case "decimal": - $rt = "Number"; - break; - case "float": - $rt = "Number"; - break; - default: - break; - } - - return $rt; - } -} diff --git a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBConnection.php b/portal/patient/fwk/libs/verysimple/DB/Reflection/DBConnection.php deleted file mode 100644 index 36e3b1910d53..000000000000 --- a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBConnection.php +++ /dev/null @@ -1,197 +0,0 @@ -dbopen = false; - - $this->Host = $dbconnstring->Host; - $this->Port = $dbconnstring->Port; - $this->Username = $dbconnstring->Username; - $this->Password = $dbconnstring->Password; - $this->DBName = $dbconnstring->DBName; - - // TODO: this is redundant after switching to the DataAdapter - $this->csetting = new ConnectionSetting(); - $this->csetting->ConnectionString = $dbconnstring->Host . ($dbconnstring->Port ? ':' . $dbconnstring->Port : ''); - $this->csetting->DBName = $dbconnstring->DBName; - $this->csetting->Username = $dbconnstring->Username; - $this->csetting->Password = $dbconnstring->Password; - $this->csetting->Type = $dbconnstring->Type; - - if ($handler) { - $this->handler = & $handler; - } else { - $this->handler = new DBEventHandler(); - } - - $this->handler->Log(DBH_LOG_INFO, "Connection Initialized"); - } - - /** - * Destructor closes the db connection. - * - * @access public - */ - function __destruct() - { - $this->Disconnect(); - } - - /** - * Opens a connection to the MySQL Server and selects the specified database - * - * @access public - * @param string $dbname - */ - function Connect() - { - $this->handler->Log(DBH_LOG_INFO, "Opening Connection..."); - if ($this->dbopen) { - $this->handler->Log(DBH_LOG_WARNING, "Connection Already Open"); - } else { - $this->adapter = new DataAdapter($this->csetting); - - try { - $this->adapter->Open(); - } catch (Exception $ex) { - $this->handler->Crash(DatabaseException::$CONNECTION_ERROR, $ex->getMessage()); - } - - $this->handler->Log(DBH_LOG_INFO, "Connection Open"); - $this->dbopen = true; - } - } - - /** - * Checks that the connection is open and if not, crashes - * - * @access public - * @param bool $auto - * Automatically try to connect if connection isn't already open - */ - private function RequireConnection($auto = false) - { - if (! $this->dbopen) { - if ($auto) { - $this->Connect(); - } else { - $this->handler->Crash(DatabaseException::$CONNECTION_ERROR, "DB is not connected. Please call DBConnection->Connect() first."); - } - } - } - - /** - * Closing the connection to the MySQL Server - * - * @access public - */ - function Disconnect() - { - $this->handler->Log(DBH_LOG_INFO, "Closing Connection..."); - - if ($this->dbopen) { - $this->adapter->Close(); - $this->dbopen = false; - $this->handler->Log(DBH_LOG_INFO, "Connection closed"); - } else { - $this->handler->Log(DBH_LOG_WARNING, "Connection Already Closed"); - } - } - - /** - * Executes a SQL select statement and returns a MySQL resultset - * - * @access public - * @param string $sql - * @return mysql_query - */ - function Select($sql) - { - $this->RequireConnection(true); - - $this->handler->Log(DBH_LOG_QUERY, "Executing Query", $sql); - - return $this->adapter->Select($sql); - } - - /** - * Executes a SQL query that does not return a resultset - * - * @access public - * @param string $sql - */ - function Update($sql) - { - $this->RequireConnection(true); - - return $this->adapter->Escape($sql); - } - - /** - * Moves the database curser forward and returns the current row as an associative array - * - * @access public - * @param mysql_query $rs - * @return Array - */ - function Next($rs) - { - $this->RequireConnection(); - - $this->handler->Log(DBH_LOG_DEBUG, "Fetching next result as array"); - return $this->adapter->Fetch($rs); - } - - /** - * Releases the resources for the given resultset - * - * @access public - * @param mysql_query $rs - */ - function Release($rs) - { - $this->RequireConnection(); - - $this->handler->Log(DBH_LOG_DEBUG, "Releasing result resources"); - return $this->adapter->Release($rs); - } -} diff --git a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBConnectionString.php b/portal/patient/fwk/libs/verysimple/DB/Reflection/DBConnectionString.php deleted file mode 100644 index b87c665b4c0e..000000000000 --- a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBConnectionString.php +++ /dev/null @@ -1,29 +0,0 @@ -Table = & $table; - - $this->Name = $row [0]; - $this->KeyColumn = $row [1]; - $this->ReferenceTableName = $row [2]; - $this->ReferenceKeyColumn = $row [3]; - - $this->ReferenceTable = $this->Table->Schema->Tables [$this->ReferenceTableName]; - // print "

" . $this->Table->Name . " constraint references " . $reftable->Name . "

"; - - $this->NameNoPrefix = $this->Table->RemovePrefix($this->Name); - $this->KeyColumnNoPrefix = $this->Table->RemovePrefix($this->KeyColumn); - $this->ReferenceKeyColumnNoPrefix = $this->ReferenceTable->RemovePrefix($this->ReferenceKeyColumn); - - // intelligently decide what a good name for this constraint might be - $tmp1 = str_replace("__", "_", str_replace($this->ReferenceTableName, "", str_replace("_id", "", $this->KeyColumnNoPrefix)) . "_"); - $tmp2 = $this->ReferenceTableName; - $this->GetterName = ($tmp1 == "_") ? $tmp2 : ($tmp1 . $tmp2); - } -} diff --git a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBEventHandler.php b/portal/patient/fwk/libs/verysimple/DB/Reflection/DBEventHandler.php deleted file mode 100644 index 779f00c34877..000000000000 --- a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBEventHandler.php +++ /dev/null @@ -1,88 +0,0 @@ -LogLevel & DBH_LOG_DEBUG) { - print "
$message
\r\n"; - } - break; - case DBH_LOG_INFO: - if ($this->LogLevel & DBH_LOG_INFO) { - print "
$message $data
\r\n"; - } - break; - case DBH_LOG_QUERY: - if ($this->LogLevel & DBH_LOG_QUERY) { - print "
$message $data
\r\n"; - } - break; - case DBH_LOG_WARNING: - if ($this->LogLevel & DBH_LOG_WARNING) { - print "
$message $data
\r\n"; - } - break; - case DBH_LOG_ERROR: - if ($this->LogLevel & DBH_LOG_ERROR) { - print "
$message $data
\r\n"; - } - break; - } - } - - /** - * Called by DB objects when a critical error occurs - * - * @access public - * @param int $code - * unique numerical identifier for error - * @param string $message - * human-readable error - * @param string $data - * any additional information that may help with debugging - */ - function Crash($code, $message = "", $data = ""): never - { - throw new DatabaseException($message, $code, $data); - } -} diff --git a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBKey.php b/portal/patient/fwk/libs/verysimple/DB/Reflection/DBKey.php deleted file mode 100644 index 397a75f4c8a9..000000000000 --- a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBKey.php +++ /dev/null @@ -1,39 +0,0 @@ -Table = & $table; - $this->KeyColumn = str_replace("`", "", $columnname); - $this->KeyComment = $this->Table->Columns [$this->KeyColumn]->Comment; - - $this->NameNoPrefix = $this->Table->RemovePrefix($this->Name); - $this->GetterName = $this->NameNoPrefix; - } -} diff --git a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBSchema.php b/portal/patient/fwk/libs/verysimple/DB/Reflection/DBSchema.php deleted file mode 100644 index 2a841aefa249..000000000000 --- a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBSchema.php +++ /dev/null @@ -1,78 +0,0 @@ -Server = & $server; - $this->Name = $server->Connection->DBName; - $this->Tables = []; - - $this->Load(); - - // print "
"; print_r($this->Tables["ticket"]); die();
-    }
-
-    /**
-     * Inspects the current schema and loads all tables, keys, etc.
-     *
-     * @access public
-     */
-    private function Load()
-    {
-        $sql = "show tables";
-        $rs = $this->Server->Connection->Select($sql);
-
-        // first pass load all the tables. this will initialize each object. we have to
-        // do this first so that we can correctly determine and store "Set" information
-        while ($row = $this->Server->Connection->Next($rs)) {
-            $this->Tables [$row ["Tables_in_" . $this->Name]] = new DBTable($this, $row);
-        }
-
-        // now load all the keys and constraints for each table
-        foreach ($this->Tables as $table) {
-            $table->LoadKeys();
-        }
-
-        $this->Server->Connection->Release($rs);
-
-        $sql = "show table status from `" . $this->Name . "`";
-        $rs2 = $this->Server->Connection->Select($sql);
-
-        // load the extra data
-        while ($row = $this->Server->Connection->Next($rs2)) {
-            $this->Tables [$row ["Name"]]->Engine = $row ["Engine"];
-            $this->Tables [$row ["Name"]]->Comment = $row ["Comment"];
-        }
-
-        $this->Server->Connection->Release($rs2);
-    }
-}
diff --git a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBServer.php b/portal/patient/fwk/libs/verysimple/DB/Reflection/DBServer.php
deleted file mode 100644
index 5219881bd063..000000000000
--- a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBServer.php
+++ /dev/null
@@ -1,53 +0,0 @@
-Connection = & $connection;
-    }
-
-    /**
-     * Return the schema with the given name from this server
-     *
-     * @access public
-     * @param string $name
-     * @return DBSchema
-     */
-    function GetSchema()
-    {
-        $this->Connection->Connect();
-
-        $schema = new DBSchema($this);
-
-        $this->Connection->Disconnect();
-
-        return $schema;
-    }
-}
diff --git a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBSet.php b/portal/patient/fwk/libs/verysimple/DB/Reflection/DBSet.php
deleted file mode 100644
index ba6bae6bb538..000000000000
--- a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBSet.php
+++ /dev/null
@@ -1,65 +0,0 @@
-Table = & $table->Schema->Tables [$row [2]];
-
-        $this->Name = $row [0];
-        $this->KeyColumn = $row [3];
-        $this->KeyComment = $this->Table->Columns [$this->KeyColumn]->Comment;
-        $this->SetTableName = $table->Name;
-        $this->SetKeyColumn = $row [1];
-        $this->SetKeyComment = $table->Columns [$this->SetKeyColumn]->Comment;
-
-        $reftable = $this->Table->Schema->Tables [$this->SetTableName];
-        // print "

" . $this->Table->Name . " set references " . $reftable->Name . "

"; - - $this->SetPrimaryKey = $reftable->GetPrimaryKeyName(false); - - $this->NameNoPrefix = $this->Table->RemovePrefix($this->Name); - $this->KeyColumnNoPrefix = $this->Table->RemovePrefix($this->KeyColumn); - $this->SetKeyColumnNoPrefix = $reftable->RemovePrefix($this->SetKeyColumn); - $this->SetPrimaryKeyNoPrefix = $reftable->RemovePrefix($this->SetPrimaryKey); - - // intelligently decide what a good name for this set would be - $tmp1 = str_replace("__", "_", str_replace($this->Table->Name, "", str_replace("_id", "", $this->SetKeyColumnNoPrefix)) . "_"); - $tmp2 = $this->SetTableName . "s"; - $this->GetterName = ($tmp1 == "_") ? $tmp2 : ($tmp1 . $tmp2); - } -} diff --git a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBTable.php b/portal/patient/fwk/libs/verysimple/DB/Reflection/DBTable.php deleted file mode 100644 index 7ad825be1cc0..000000000000 --- a/portal/patient/fwk/libs/verysimple/DB/Reflection/DBTable.php +++ /dev/null @@ -1,303 +0,0 @@ -Name = $row ["Tables_in_" . $this->Schema->Name]; - $this->Columns = []; - $this->PrimaryKeys = []; - $this->ForeignKeys = []; - $this->Constraints = []; - $this->Sets = []; - - $this->LoadColumns(); - $this->DiscoverColumnPrefix(); - } - - /** - * Returns the number of columns involved in the primary key - * - * @return number - */ - function NumberOfPrimaryKeyColumns() - { - return count($this->PrimaryKeys); - } - - /** - * Returns name of the primary key - * TODO: If there are multiple keys, this is no accurate. - * Only returns the first key found - * - * @access public - * @param bool $remove_prefix - * @return string - */ - function GetPrimaryKeyName($remove_prefix = true) - { - foreach ($this->PrimaryKeys as $key) { - return ($remove_prefix) ? $this->RemovePrefix($key->KeyColumn) : $key->KeyColumn; - } - - // views don't technically have a primary key but we will return the first column if anybody asks - if ($this->IsView) { - return $this->GetColumnNameByIndex(0, $remove_prefix); - } - } - - /** - * Returns the name of the column at the given index - * - * @access public - * @param int $index - * (zero based) - * @param bool $remove_prefix - * @return string - */ - function GetColumnNameByIndex($index, $remove_prefix = true) - { - $count = 0; - foreach ($this->Columns as $column) { - if ($count == $index) { - return ($remove_prefix) ? $column->NameWithoutPrefix : $column->Name; - } - } - - throw new Exception('Index out of bounds'); - } - - /** - * Returns true if the primary key for this table is an auto_increment - * TODO: Only checks the first key if there are multiple primary keys - * - * @access public - * @return bool - */ - function PrimaryKeyIsAutoIncrement() - { - $pk = $this->GetPrimaryKeyName(false); - return $pk && $this->Columns [$pk]->Extra == "auto_increment"; - } - - /** - * Returns name of the first varchar field which could be used as a "label" - * - * @access public - * @return string - */ - function GetDescriptorName($remove_prefix = true) - { - foreach ($this->Columns as $column) { - if ($column->Type == "varchar") { - return ($remove_prefix) ? $this->RemovePrefix($column->Name) : $column->Name; - } - } - - // give up because there are no varchars in this table - return $this->GetPrimaryKeyName($remove_prefix); - } - - /** - * Inspects all columns to see if there is a common prefix in the format: XXX_ - * - * @access private - */ - private function DiscoverColumnPrefix() - { - $prev_prefix = ""; - $has_prefix = true; - foreach ($this->Columns as $column) { - $curr_prefix = substr((string) $column->Name, 0, strpos((string) $column->Name, "_") + 1); - - if ($prev_prefix == "") { - // first time through the loop - $prev_prefix = $curr_prefix ?: "#NONE#"; - } elseif ($prev_prefix != $curr_prefix) { - $has_prefix = false; - } - } - - if ($has_prefix) { - // set the table column prefix property - $this->ColumnPrefix = $curr_prefix; - - // update the columns to reflect the prefix as well - foreach ($this->Columns as $column) { - $column->NameWithoutPrefix = substr((string) $column->Name, strlen($curr_prefix)); - } - } - - // if a column begins with a numeric character then prepend a string to prevent generated code errors - if (self::$NUMERIC_COLUMN_PREFIX) { - foreach ($this->Columns as $column) { - if (is_numeric(substr((string) $column->NameWithoutPrefix, 0, 1))) { - $column->NameWithoutPrefix = self::$NUMERIC_COLUMN_PREFIX . $column->NameWithoutPrefix; - } - } - } - } - - /** - * Returns a name that is acceptable to be used as the "object" name in generated code - */ - public function GetObjectName() - { - if (is_numeric(substr((string) $this->Name, 0, 1))) { - return self::$NUMERIC_TABLE_PREFIX . $this->Name; - } - - return $this->Name; - } - - /** - * Given a column name, removes the prefix - * - * @access private - */ - public function RemovePrefix($name) - { - // print "remove prefix $name: " . $this->ColumnPrefix . "
"; - return substr((string) $name, strlen((string) $this->ColumnPrefix)); - } - - /** - * Inspects the current table and loads all Columns - * - * @access private - */ - private function LoadColumns() - { - // get the colums - $sql = "describe `" . $this->Name . "`"; - - $rs = $this->Schema->Server->Connection->Select($sql); - - while ($row = $this->Schema->Server->Connection->Next($rs)) { - $this->Columns [$row ["Field"]] = new DBColumn($this, $row); - } - - $this->Schema->Server->Connection->Release($rs); - } - - /** - * Load the keys and constraints for this table and populate the sets for - * all tables on which this table is dependents - * - * @access public - */ - public function LoadKeys() - { - - // get the keys and constraints - $sql = "show create table `" . $this->Name . "`"; - - $create_table = ""; - - $rs = $this->Schema->Server->Connection->Select($sql); - - if ($row = $this->Schema->Server->Connection->Next($rs)) { - if (isset($row ["Create Table"])) { - $create_table = $row ["Create Table"]; - } elseif (isset($row ["Create View"])) { - $this->IsView = true; - $create_table = $row ["Create View"]; - - // treat the 1st column in a view as the primary key - $this->Columns [$this->GetColumnNameByIndex(0, false)]->Key = 'PRI'; - } else { - throw new Exception("Unknown Table Type"); - } - } - - $this->Schema->Server->Connection->Release($rs); - - $lines = explode("\n", $create_table); - - foreach ($lines as $line) { - $line = trim($line); - if (str_starts_with($line, "PRIMARY KEY")) { - preg_match_all("/`(\w+)`/", $line, $matches, PREG_PATTERN_ORDER); - // print "
"; print_r($matches); die(); // DEBUG
-                $this->PrimaryKeys [$matches [1] [0]] = new DBKey($this, "PRIMARY KEY", $matches [0] [0]);
-            } elseif (str_starts_with($line, "KEY")) {
-                preg_match_all("/`(\w+)`/", $line, $matches, PREG_PATTERN_ORDER);
-                // print "
"; print_r($matches); die(); // DEBUG
-                $this->ForeignKeys [$matches [1] [0]] = new DBKey($this, $matches [1] [0], $matches [1] [1]);
-
-                // Add keys to the column for convenience
-                $this->Columns [$matches [1] [1]]->Keys [] = $matches [1] [0];
-            } elseif (str_starts_with($line, "CONSTRAINT")) {
-                preg_match_all("/`(\w+)`/", $line, $matches, PREG_PATTERN_ORDER);
-                // print "
"; print_r($matches); die(); // DEBUG
-                $this->Constraints [$matches [1] [0]] = new DBConstraint($this, $matches [1]);
-
-                // the set is basically the reverse of the constraint, but we want to add it to the
-                // constraining table so we don't have to do reverse-lookup looking for child relationships
-                $this->Schema->Tables [$matches [1] [2]]->Sets [$matches [1] [0]] = new DBSet($this, $matches [1]);
-
-                // print "
##########################\r\n" . print_r($matches,1) . "\r\n##########################\r\n";
-
-                // Add constraints to the column for convenience
-                $this->Columns [$matches [1] [1]]->Constraints [] = $matches [1] [0];
-            } elseif (strstr($line, "COMMENT ")) {
-                // TODO: this is pretty fragile... ?
-                // table comments and column comments are seemingly differentiated by "COMMENT=" vs "COMMENT "
-                $parts = explode("`", $line);
-                $column = $parts [1];
-                $comment = strstr($line, "COMMENT ");
-                $comment = substr($comment, 9, strlen($comment) - 11);
-                $comment = str_replace("''", "'", $comment);
-                $this->Columns [$column]->Comment = $comment;
-
-                if ($this->Columns [$column]->Default == "" && str_starts_with($comment, "default=")) {
-                    $this->Columns [$column]->Default = substr($comment, 9, strlen($comment) - 10);
-                }
-
-                // print "
" . $column . "=" . htmlspecialchars( $this->Columns[$column]->Default );
-            }
-
-            // TODO: look for COMMENT
-        }
-    }
-}
diff --git a/portal/patient/fwk/libs/verysimple/HTTP/HttpRequest.php b/portal/patient/fwk/libs/verysimple/HTTP/HttpRequest.php
deleted file mode 100644
index e490b8ddc788..000000000000
--- a/portal/patient/fwk/libs/verysimple/HTTP/HttpRequest.php
+++ /dev/null
@@ -1,381 +0,0 @@
-Path = str_replace("\\", "/", $path); // normalize any directory paths
-
-        $this->Name = substr($this->Path, strrpos($this->Path, "/") + 1);
-        $this->Extention = substr($this->Path, strrpos($this->Path, ".") + 1);
-        $this->Prefix = substr($this->Name, 0, strpos($this->Name, "."));
-        $this->MiddleBit = substr($this->Name, strpos($this->Name, ".") + 1, strrpos($this->Name, ".") - strpos($this->Name, ".") - 1);
-        $this->FolderPath = substr($this->Path, 0, strrpos($this->Path, "/") + 1);
-    }
-}
diff --git a/portal/patient/fwk/libs/verysimple/IO/FolderHelper.php b/portal/patient/fwk/libs/verysimple/IO/FolderHelper.php
deleted file mode 100644
index 13f6c1149e80..000000000000
--- a/portal/patient/fwk/libs/verysimple/IO/FolderHelper.php
+++ /dev/null
@@ -1,56 +0,0 @@
-Path);
-
-        while ($fname = readdir($dh)) {
-            if (is_file($this->Path . $fname)) {
-                if ($pattern == "" || preg_match($pattern, $fname) > 0) {
-                    $files [] = new FileHelper($this->Path . $fname);
-                }
-            }
-        }
-
-        closedir($dh);
-
-        return $files;
-    }
-}
diff --git a/portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php b/portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php
deleted file mode 100644
index 6e1c74404059..000000000000
--- a/portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php
+++ /dev/null
@@ -1,135 +0,0 @@
- BladeRenderEngine::$TEMPLATE_PATH . $view . '.blade.php');
-    }
-
-    /**
-     * @inheritdoc
-     */
-    public function assign($key, $value)
-    {
-        $this->model [$key] = $value;
-    }
-
-    /**
-     * @inheritdoc
-     */
-    public function display($template)
-    {
-        // die('template = ' . $template);
-        $template = str_replace('.tpl', '', $template); // normalize any old smarty template paths
-        echo $this->fetch($template);
-    }
-
-    /**
-     * Returns the specified model value
-     */
-    public function get($key)
-    {
-        return $this->model [$key];
-    }
-
-    /**
-     * @inheritdoc
-     */
-    public function fetch($template)
-    {
-        $view = Laravel\View::make($template, $this->model);
-
-        Laravel\Blade::sharpen();
-
-        $responses = Laravel\Event::fire(Laravel\View::engine, [
-                $view
-        ]);
-
-        return $responses [0];
-    }
-
-    /**
-     *
-     * @see IRenderEngine::clear()
-     */
-    function clear($key)
-    {
-        if (array_key_exists($key, $this->model)) {
-            unset($this->model [$key]);
-        }
-    }
-
-    /**
-     *
-     * @see IRenderEngine::clearAll()
-     */
-    function clearAll()
-    {
-        $this->model ==  [];
-    }
-
-    /**
-     *
-     * @see IRenderEngine::getAll()
-     */
-    function getAll()
-    {
-        return $this->model;
-    }
-}
diff --git a/portal/patient/fwk/libs/verysimple/Phreeze/SmartyRenderEngine.php b/portal/patient/fwk/libs/verysimple/Phreeze/SmartyRenderEngine.php
deleted file mode 100644
index d256dacc17dd..000000000000
--- a/portal/patient/fwk/libs/verysimple/Phreeze/SmartyRenderEngine.php
+++ /dev/null
@@ -1,99 +0,0 @@
-smarty = new Smarty();
-
-        if ($templatePath) {
-            $this->smarty->template_dir = $templatePath;
-        }
-
-        if ($compilePath) {
-            $this->smarty->compile_dir = $compilePath;
-            $this->smarty->config_dir = $compilePath;
-            $this->smarty->cache_dir = $compilePath;
-        }
-    }
-
-    /**
-     *
-     * @see IRenderEngine::assign()
-     */
-    function assign($key, $value)
-    {
-        return $this->smarty->assign($key, $value);
-    }
-
-    /**
-     *
-     * @see IRenderEngine::display()
-     */
-    function display($template)
-    {
-        return $this->smarty->display($template);
-    }
-
-    /**
-     *
-     * @see IRenderEngine::fetch()
-     */
-    function fetch($template)
-    {
-        return $this->smarty->fetch($template);
-    }
-
-    /**
-     *
-     * @see IRenderEngine::clear()
-     */
-    function clear($key)
-    {
-        $this->smarty->clearAssign($key);
-    }
-
-    /**
-     *
-     * @see IRenderEngine::clearAll()
-     */
-    function clearAll()
-    {
-        $this->smarty->clearAllAssign();
-    }
-
-    /**
-     *
-     * @see IRenderEngine::getAll()
-     */
-    function getAll()
-    {
-        return $this->smarty->getTemplateVars();
-    }
-}
diff --git a/portal/patient/fwk/libs/verysimple/Phreeze/TwigRenderEngine.php b/portal/patient/fwk/libs/verysimple/Phreeze/TwigRenderEngine.php
deleted file mode 100644
index 900aa6c517d8..000000000000
--- a/portal/patient/fwk/libs/verysimple/Phreeze/TwigRenderEngine.php
+++ /dev/null
@@ -1,105 +0,0 @@
-loader = new Twig_Loader_Filesystem($templatePath);
-        $this->twig = new Twig_Environment($this->loader, [
-                'cache' => $compilePath
-        ]);
-    }
-
-    /**
-     *
-     * @see IRenderEngine::assign()
-     */
-    function assign($key, $value)
-    {
-        return $this->assignments [$key] = $value;
-    }
-
-    /**
-     *
-     * @see IRenderEngine::display()
-     */
-    function display($template)
-    {
-        if (!str_contains('.', $template)) {
-            $template .= '.html';
-        }
-
-        return $this->twig->display($template, $this->assignments);
-    }
-
-    /**
-     *
-     * @see IRenderEngine::fetch()
-     */
-    function fetch($template)
-    {
-        if (!str_contains('.', $template)) {
-            $template .= '.html';
-        }
-
-        return $this->twig->render($template, $this->assignments);
-    }
-
-    /**
-     *
-     * @see IRenderEngine::clear()
-     */
-    function clear($key)
-    {
-        unset($this->assignments [$key]);
-    }
-
-    /**
-     *
-     * @see IRenderEngine::clearAll()
-     */
-    function clearAll()
-    {
-        $this->assignments =  [];
-    }
-
-    /**
-     *
-     * @see IRenderEngine::getAll()
-     */
-    function getAll()
-    {
-        return $this->assignments;
-    }
-}
diff --git a/portal/patient/fwk/libs/verysimple/String/NameValue.php b/portal/patient/fwk/libs/verysimple/String/NameValue.php
deleted file mode 100644
index 949d395a5a92..000000000000
--- a/portal/patient/fwk/libs/verysimple/String/NameValue.php
+++ /dev/null
@@ -1,84 +0,0 @@
-Name = $keyval [0];
-        $this->Value = $nameonly == false && isset($keyval [1]) ? $keyval [1] : $keyval [0];
-    }
-
-    /**
-     * Parses a string into an array of NameValue objects.
-     *
-     * @access public
-     * @param $lines string
-     *          in the format name1=val1\nname2=val2 etc...
-     * @param $delim the
-     *          delimiter between name and value (default "=")
-     * @param $nameonly returns
-     *          only the name in the name/value pair
-     * @return Array of NameValue objects
-     */
-    static function Parse($lines, $delim = "=", $nameonly = false)
-    {
-        $return =  [];
-
-        $lines = str_replace("\r\n", "\n", $lines);
-        $lines = str_replace("\r", "\n", $lines);
-        $arr = explode("\n", $lines);
-
-        if ($lines == "") {
-            return $return;
-        }
-
-        foreach ($arr as $line) {
-            $return [] = new NameValue($line, $delim, $nameonly);
-        }
-
-        return $return;
-    }
-
-    /**
-     * Converts an array of NameValue objects into a simple 1 dimensional array.
-     * WARNING: if there are duplicate Names in your array, they will be overwritten
-     *
-     * @access public
-     * @param $nvArray Array
-     *          of NameValue objects (as returned from Parse)
-     * @return array
-     */
-    static function ToSimpleArray($nvArray)
-    {
-        $sa =  [];
-        foreach ($nvArray as $nv) {
-            $sa [$nv->Name] = $nv->Value;
-        }
-
-        return $sa;
-    }
-}
diff --git a/portal/patient/fwk/libs/verysimple/String/SimpleTemplate.php b/portal/patient/fwk/libs/verysimple/String/SimpleTemplate.php
deleted file mode 100644
index d85e91594d0e..000000000000
--- a/portal/patient/fwk/libs/verysimple/String/SimpleTemplate.php
+++ /dev/null
@@ -1,188 +0,0 @@
-', '>', $txt);
-        $txt = str_replace('< ', '<', $txt);
-
-        // Transforms accents in html entities.
-        $txt = htmlentities($txt);
-
-        // We need some HTML entities back!
-        $txt = str_replace('"', '"', $txt);
-        $txt = str_replace('<', '<', $txt);
-        $txt = str_replace('>', '>', $txt);
-        $txt = str_replace('&', '&', $txt);
-
-        // Ajdusts links - anything starting with HTTP opens in a new window
-        // $txt = str_ireplace("

", $txt) . '

'; - $html = str_replace("$eol", "
\n", $html); - $html = str_replace("

", "

\n\n", $html); - $html = str_replace("

", "

 

", $html); - - // Wipes
after block tags (for when the user includes some html in the text). - $wipebr = [ - "table", - "tr", - "td", - "blockquote", - "ul", - "ol", - "li" - ]; - - for ($x = 0; $x < count($wipebr); $x++) { - $tag = $wipebr [$x]; - $html = str_ireplace("<$tag>
", "<$tag>", $html); - $html = str_ireplace("
", "", $html); - } - - return $html; - } - - /** - * Merges data into a template with placeholder variables - * (for example "Hello {{NAME}}"). - * Useful for simple templating - * needs such as email, form letters, etc. - * - * If a placeholder is in the template but there is no matching value, - * then the placeholder will be left alone and will appear in the output. - * - * Note that there is no escape character so ensure the right and - * left delimiters do not appear as normal text within the template - * - * @param string $template - * string with placeholder variables - * @param - * mixed (array or object) $values an associative array or object with key/value pairs - * @param - * bool true to strip out placeholders with missing value, false to leave them as-is in the output (default true) - * @param - * string the left (opening) delimiter for placeholders. default = {{ - * @param - * string the right (closing) delimiter for placeholders. default = }} - * @return string merged template - */ - static function Merge($template, $values, $stripMissingValues = true, $ldelim = "{{", $rdelim = "}}") - { - return $stripMissingValues ? self::MergeRegEx($template, $values, $ldelim, $rdelim) : self::MergeSimple($template, $values, $ldelim, $rdelim); - } - - /** - * Used internally by Merge, or may be called directly. - * If a placeholder is in the template but there is no matching value, - * it will be left alone and appear in the template, for example: {{PLACEHOLDER}}. - * - * @param string $template - * string with placeholder variables - * @param - * mixed (array or object) $values an associative array or object with key/value pairs - * @param - * string the left (opening) delimiter for placeholders. default = {{ - * @param - * string the right (closing) delimiter for placeholders. default = }} - * @return string merged template - */ - static function MergeSimple($template, $values, $ldelim = "{{", $rdelim = "}}") - { - $replacements = []; - - foreach ($values as $key => $val) { - $replacements [$ldelim . $key . $rdelim] = $val; - } - - return strtr($template, $replacements); - } - - /** - * Used internally by Merge, or may be called directly. - * If a placeholder is in the template but there is no matching value, - * it will be replaced with empty string and will NOT appear in the output. - * - * @param string $template - * string with placeholder variables - * @param - * mixed (array or object) $values an associative array or object with key/value pairs - * @param - * string the left (opening) delimiter for placeholders. default = {{ - * @param - * string the right (closing) delimiter for placeholders. default = }} - * @return string merged template - */ - static function MergeRegEx($template, $values, $ldelim = "{{", $rdelim = "}}") - { - self::$_MERGE_TEMPLATE_VALUES = $values; - - if ($ldelim != "{{" || $rdelim != "}}") { - throw new Exception("Custom delimiters are not yet implemented. Sorry!"); - } - - $results = preg_replace_callback('!\{\{(\w+)\}\}!', SimpleTemplate::_MergeRegExCallback(...), $template); - - self::$_MERGE_TEMPLATE_VALUES = null; - - return $results; - } - - /** - * called internally by preg_replace_callback - * - * @param array $matches - */ - static function _MergeRegExCallback($matches) - { - if (isset(self::$_MERGE_TEMPLATE_VALUES [$matches [1]])) { - return self::$_MERGE_TEMPLATE_VALUES [$matches [1]]; - } else { - return ""; - } - } -} diff --git a/portal/patient/fwk/libs/verysimple/Util/TextImageWriter.php b/portal/patient/fwk/libs/verysimple/Util/TextImageWriter.php deleted file mode 100644 index 134bb455691b..000000000000 --- a/portal/patient/fwk/libs/verysimple/Util/TextImageWriter.php +++ /dev/null @@ -1,104 +0,0 @@ - Date: Sun, 28 Dec 2025 13:49:28 -0500 Subject: [PATCH 012/139] refactor(php): no call_user_func* (#9767) * chore(rector): CallUserFuncArrayToVariadicRector * refactor(php): avoid call_user_func_array * chore(phpstan): rule to block call_user_func* * refactor(php): no call_user_func* * refactor(php): rector updates --- .phpstan/ForbiddenFunctionsRule.php | 20 +++- .phpstan/README.md | 43 +++++++- ccr/createCCR.php | 2 +- controllers/C_Document.class.php | 2 +- custom/zutil.cli.doc_import.php | 28 +++-- interface/code_systems/list_staged.php | 2 +- .../code_systems/standard_tables_manage.php | 14 +-- interface/drugs/add_edit_drug.php | 2 +- interface/drugs/add_edit_lot.php | 2 +- interface/fax/fax_dispatch.php | 2 +- interface/forms/LBF/new.php | 10 +- interface/forms/eye_mag/a_issue.php | 4 +- interface/forms/eye_mag/save.php | 2 +- interface/main/calendar/add_edit_event.php | 2 +- interface/main/finder/document_select.php | 22 ++-- .../src/Controller/AppDispatch.php | 4 +- .../Model/EncounterccdadispatchTable.php | 2 +- .../Controller/InstallerController.php | 2 +- interface/patient_file/history/encounters.php | 6 +- .../patient_file/history/history_sdoh.php | 2 +- interface/patient_file/summary/stats.php | 2 +- .../transaction/add_transaction.php | 4 +- interface/reports/clinical_reports.php | 2 +- .../templates/field_html_display_section.php | 3 +- library/classes/Controller.class.php | 6 +- library/custom_template/add_context.php | 24 ++--- library/custom_template/add_custombutton.php | 14 +-- library/custom_template/add_template.php | 10 +- library/custom_template/custom_template.php | 16 +-- library/custom_template/delete_category.php | 12 +-- library/custom_template/quest_popup.php | 4 +- library/custom_template/save_as.php | 2 +- library/encounter_events.inc.php | 4 +- library/options.inc.php | 102 +++++++++--------- library/payment_jav.inc.php | 10 +- library/report.inc.php | 2 +- .../smarty/Smarty_Compiler_Legacy.class.php | 8 +- .../smarty/Smarty_Legacy.class.php | 18 ++-- .../internals/core.get_php_resource.php | 4 +- .../smarty/internals/core.is_secure.php | 5 +- .../smarty/internals/core.is_trusted.php | 4 +- .../smarty/internals/core.read_cache_file.php | 4 +- .../internals/core.write_cache_file.php | 4 +- library/standard_tables_capture.inc.php | 6 +- portal/patient/fwk/libs/savant/Savant3.php | 20 ++-- .../fwk/libs/verysimple/Phreeze/Criteria.php | 10 +- .../libs/verysimple/Phreeze/Dispatcher.php | 5 +- .../fwk/libs/verysimple/Phreeze/Phreezer.php | 20 +--- rector.php | 3 +- .../BillingProcessor/BillingLogger.php | 2 +- src/Common/Forms/FormReportRenderer.php | 2 +- src/Common/Forms/FormVitals.php | 2 +- src/Common/Forms/Types/BillingCodeType.php | 2 +- .../Forms/Types/LocalProviderListType.php | 2 +- src/Common/Forms/Types/SmokingStatusType.php | 14 +-- src/Common/ORDataObject/ORDataObject.php | 8 +- .../AuthorizationController.php | 8 +- .../Isolated/Billing/BillingLoggerTest.php | 2 +- 58 files changed, 278 insertions(+), 265 deletions(-) diff --git a/.phpstan/ForbiddenFunctionsRule.php b/.phpstan/ForbiddenFunctionsRule.php index e74f6bce1d34..8c0a3731df7d 100644 --- a/.phpstan/ForbiddenFunctionsRule.php +++ b/.phpstan/ForbiddenFunctionsRule.php @@ -1,10 +1,11 @@ @@ -42,6 +43,8 @@ class ForbiddenFunctionsRule implements Rule 'sqlStatementNoLog' => 'Use QueryUtils::fetchRecordsNoLog() instead of sqlStatementNoLog().', 'sqlStatementThrowException' => 'Use QueryUtils::sqlStatementThrowException() instead of global sqlStatementThrowException().', 'sqlQueryNoLog' => 'Use QueryUtils::querySingleRow() instead of sqlQueryNoLog().', + 'call_user_func' => 'Use uniform variable syntax $callable(...$args) or the argument unpacking operator instead of call_user_func().', + 'call_user_func_array' => 'Use uniform variable syntax $callable(...$args) or the argument unpacking operator instead of call_user_func_array().', ]; public function getNodeType(): string @@ -68,6 +71,17 @@ public function processNode(Node $node, Scope $scope): array $message = self::FORBIDDEN_FUNCTIONS[$functionName]; + // Determine error identifier and tip based on function type + if (in_array($functionName, ['call_user_func', 'call_user_func_array'])) { + return [ + RuleErrorBuilder::message($message) + ->identifier('openemr.legacyCallUserFunc') + ->tip('Example: $myFunction(...$args) or [$object, \'method\'](...$args)') + ->build() + ]; + } + + // Default for SQL functions return [ RuleErrorBuilder::message($message) ->identifier('openemr.deprecatedSqlFunction') diff --git a/.phpstan/README.md b/.phpstan/README.md index c093f7123d4c..81d87ffb3acd 100644 --- a/.phpstan/README.md +++ b/.phpstan/README.md @@ -46,9 +46,48 @@ $apiKey = $cryptoGen->decryptStandard($globals->get('gateway_api_key')); ### ForbiddenFunctionsRule -**Purpose:** Prevents use of legacy `sql.inc.php` functions in the `src/` directory. +**Purpose:** Prevents use of legacy functions: +- Legacy `sql.inc.php` functions in the `src/` directory +- `call_user_func()` and `call_user_func_array()` functions (use modern PHP syntax instead) -**Rationale:** Contributors should use `QueryUtils` or `DatabaseQueryTrait` instead for modern database patterns. +**Rationale for SQL functions:** Contributors should use `QueryUtils` or `DatabaseQueryTrait` instead for modern database patterns. + +**Rationale for call_user_func:** +- Modern PHP supports **uniform variable syntax** for dynamic function calls +- The **argument unpacking operator** (`...`) provides cleaner syntax +- Variadic functions with `...$args` are more readable than array-based arguments +- Better static analysis and IDE support with modern syntax + +**Before (❌ Forbidden):** +```php +// Legacy dynamic function calls +$result = call_user_func('myFunction', $arg1, $arg2); +$result = call_user_func_array('myFunction', [$arg1, $arg2]); +$result = call_user_func([$object, 'method'], $arg1); +$result = call_user_func_array([$object, 'method'], $args); +``` + +**After (✅ Recommended):** +```php +// Modern PHP 7+ syntax +$result = myFunction($arg1, $arg2); + +// Dynamic function name +$functionName = 'myFunction'; +$result = $functionName($arg1, $arg2); + +// With argument unpacking +$args = [$arg1, $arg2]; +$result = $functionName(...$args); + +// Object method calls +$result = $object->method($arg1); +// or with callable syntax +$callable = [$object, 'method']; +$result = $callable($arg1, $arg2); +// or with argument unpacking +$result = $callable(...$args); +``` ### ForbiddenClassesRule diff --git a/ccr/createCCR.php b/ccr/createCCR.php index c709e3d3b9df..db5f73fa52fd 100644 --- a/ccr/createCCR.php +++ b/ccr/createCCR.php @@ -391,7 +391,7 @@ function createHybridXML($ccr): void if (str_starts_with((string) $raw, "send")) { $send_to = trim(stripslashes(substr((string) $raw, 5))); if (!PHPMailer::ValidateAddress($send_to)) { - echo(htmlspecialchars((string) xl('Invalid recipient address. Please try again.'), ENT_QUOTES)); + echo(htmlspecialchars(xl('Invalid recipient address. Please try again.'), ENT_QUOTES)); return; } diff --git a/controllers/C_Document.class.php b/controllers/C_Document.class.php index 6930cb3d7ca9..74b8bd33268e 100644 --- a/controllers/C_Document.class.php +++ b/controllers/C_Document.class.php @@ -335,7 +335,7 @@ public function upload_action_process() } $upload_plugin_pp = 'documentUploadPostProcess'; if (function_exists($upload_plugin_pp)) { - $tmp = call_user_func($upload_plugin_pp, $value, $d); + $tmp = $upload_plugin_pp($value, $d); if ($tmp) { $error = $tmp; } diff --git a/custom/zutil.cli.doc_import.php b/custom/zutil.cli.doc_import.php index 0f9228a01e28..487cf3dae4fc 100644 --- a/custom/zutil.cli.doc_import.php +++ b/custom/zutil.cli.doc_import.php @@ -139,21 +139,19 @@ } printf('%s - %s%s', text($doc_pathname), (is_numeric($objDoc->get_id()) ? text($objDoc->get_url()) : xlt('Documents setup error')), "\n"); } else { - // Too many parameters for the function make the following setup necessary for readability. - $doc_params = [ - 'name' => $doc->getFilename(), - 'mime_type' => $str_mime, - 'full_path' => $doc_pathname, - 'upload_error' => '', - 'size' => $doc->getSize(), - 'owner' => $arg['owner'], - 'patient_id' => $arg['pid'], - 'category_id' => '1', - 'higher_level_path' => '', - 'path_depth' => '1', - 'skip_acl_check' => true - ]; - $new_doc = call_user_func_array(addNewDocument(...), $doc_params); + $new_doc = addNewDocument( + name: $doc->getFilename(), + type: $str_mime, + tmp_name: $doc_pathname, + error: '', + size: $doc->getSize(), + owner: $arg['owner'], + patient_id_or_simple_directory: $arg['pid'], + category_id: '1', + higher_level_path: '', + path_depth: '1', + skip_acl_check: true, + ); printf('%s - %s%s', text($doc_pathname), (isset($new_doc) ? text($new_doc->get_url()) : xlt('Documents setup error')), "\n"); if (!$new_doc) { die(); diff --git a/interface/code_systems/list_staged.php b/interface/code_systems/list_staged.php index b948fe1deeb9..a41f43ada1bd 100644 --- a/interface/code_systems/list_staged.php +++ b/interface/code_systems/list_staged.php @@ -444,7 +444,7 @@ } } - if (strlen((string) $action) > 0) { + if (strlen($action) > 0) { $rf = "rf1"; if (!empty($rf2)) { $rf = "rf2"; diff --git a/interface/code_systems/standard_tables_manage.php b/interface/code_systems/standard_tables_manage.php index 2a7e629cb5f5..d7f3073db9b3 100644 --- a/interface/code_systems/standard_tables_manage.php +++ b/interface/code_systems/standard_tables_manage.php @@ -56,14 +56,14 @@ // load the database if ($db == 'RXNORM') { if (!rxnorm_import(IS_WINDOWS)) { - echo htmlspecialchars((string) xl('ERROR: Unable to load the file into the database.'), ENT_NOQUOTES) . "
"; + echo htmlspecialchars(xl('ERROR: Unable to load the file into the database.'), ENT_NOQUOTES) . "
"; temp_dir_cleanup($db); exit; } } elseif ($db == 'SNOMED') { if ($rf == "rf2") { if (!snomedRF2_import()) { - echo htmlspecialchars((string) xl('ERROR: Unable to load the file into the database.'), ENT_NOQUOTES) . "
"; + echo htmlspecialchars(xl('ERROR: Unable to load the file into the database.'), ENT_NOQUOTES) . "
"; temp_dir_cleanup($db); exit; } else { @@ -72,7 +72,7 @@ } } elseif ($version == "US Extension") { if (!snomed_import(true)) { - echo htmlspecialchars((string) xl('ERROR: Unable to load the file into the database.'), ENT_NOQUOTES) . "
"; + echo htmlspecialchars(xl('ERROR: Unable to load the file into the database.'), ENT_NOQUOTES) . "
"; temp_dir_cleanup($db); exit; } else { @@ -81,7 +81,7 @@ } } else { if (!snomed_import(false)) { - echo htmlspecialchars((string) xl('ERROR: Unable to load the file into the database.'), ENT_NOQUOTES) . "
"; + echo htmlspecialchars(xl('ERROR: Unable to load the file into the database.'), ENT_NOQUOTES) . "
"; temp_dir_cleanup($db); exit; } else { @@ -91,13 +91,13 @@ } } elseif ($db == 'CQM_VALUESET') { if (!valueset_import($db)) { - echo htmlspecialchars((string) xl('ERROR: Unable to load the file into the database.'), ENT_NOQUOTES) . "
"; + echo htmlspecialchars(xl('ERROR: Unable to load the file into the database.'), ENT_NOQUOTES) . "
"; temp_dir_cleanup($db); exit; } } else { //$db == 'ICD' if (!icd_import($db)) { - echo htmlspecialchars((string) xl('ERROR: Unable to load the file into the database.'), ENT_NOQUOTES) . "
"; + echo htmlspecialchars(xl('ERROR: Unable to load the file into the database.'), ENT_NOQUOTES) . "
"; temp_dir_cleanup($db); exit; } @@ -105,7 +105,7 @@ // set the revision version in the database if (!update_tracker_table($db, $file_revision_date, $version, $file_checksum)) { - echo htmlspecialchars((string) xl('ERROR: Unable to set the version number.'), ENT_NOQUOTES) . "
"; + echo htmlspecialchars(xl('ERROR: Unable to set the version number.'), ENT_NOQUOTES) . "
"; temp_dir_cleanup($db); exit; } diff --git a/interface/drugs/add_edit_drug.php b/interface/drugs/add_edit_drug.php index e41e3e57b7d8..11cc1cdea321 100644 --- a/interface/drugs/add_edit_drug.php +++ b/interface/drugs/add_edit_drug.php @@ -701,7 +701,7 @@ function validate(f) { diff --git a/interface/drugs/add_edit_lot.php b/interface/drugs/add_edit_lot.php index b38d55a07940..0d74bb5f54e8 100644 --- a/interface/drugs/add_edit_lot.php +++ b/interface/drugs/add_edit_lot.php @@ -782,7 +782,7 @@ function trans_type_changed() { @@ -646,7 +646,7 @@ function submitme() { // titleChanged(); diff --git a/interface/reports/clinical_reports.php b/interface/reports/clinical_reports.php index 00feb01e12c8..60c1a5859967 100644 --- a/interface/reports/clinical_reports.php +++ b/interface/reports/clinical_reports.php @@ -219,7 +219,7 @@ function submitForm() { - +
@@ -4372,7 +4372,7 @@ function dopclick(id) { }); dlgopen('../../patient_file/summary/a_issue.php?' + params.toString(), '_blank', 550, 400, '', ); - alert(""); + alert(); } function doscript(type,id,encounter,rx_number) { diff --git a/interface/main/calendar/add_edit_event.php b/interface/main/calendar/add_edit_event.php index 091ee604c2f7..9157105d0fcd 100644 --- a/interface/main/calendar/add_edit_event.php +++ b/interface/main/calendar/add_edit_event.php @@ -1183,20 +1183,20 @@ function set_days_every_week() { // Constants used by dateChanged() function. const occurNames = Array( - '', - '', - '', - '' + , + , + , + ); const weekDays = Array( - '', - '', - '', - '', - '', - '', - '' + , + , + , + , + , + , + ); // Monitor start date changes to adjust repeat type options. @@ -1215,7 +1215,7 @@ function dateChanged() { if (tmp.getDate() - d.getUTCDate() < 7) { // Modified by epsdky 2016 (details in commit) // This is a last occurrence of the specified weekday in the month, // so permit that as an option. - lasttext = ' ' + downame; + lasttext = + ' ' + downame; } var si = f.form_repeat_type.selectedIndex; var opts = f.form_repeat_type.options; @@ -1912,7 +1912,7 @@ function validateform(event,valu){ $('#form_save').attr('disabled', true); //Make sure if days_every_week is checked that at least one weekday is checked. if($('#days_every_week').is(':checked') && !are_days_checked()){ - alert(''); + alert(); $('#form_save').attr('disabled', false); return false; } @@ -1921,7 +1921,7 @@ function validateform(event,valu){ //Prevent from user to change status to Arrive before the time //Dependent in globals setting - allow_early_check_in if($('#form_apptstatus').val() == '@' && new Date(DateToYYYYMMDD_js($('#form_date').val())).getTime() > new Date().getTime()){ - alert(''); + alert(); $('#form_save').attr('disabled', false); return false; } @@ -2043,7 +2043,7 @@ function SubmitForm() { }?> if (f.form_action.value != 'delete') { - if (!confirm('')) { + if (!confirm()) { top.restoreSession(); } diff --git a/interface/main/dated_reminders/dated_reminders.php b/interface/main/dated_reminders/dated_reminders.php index 12dbb2bc14ef..247e1de8c38c 100644 --- a/interface/main/dated_reminders/dated_reminders.php +++ b/interface/main/dated_reminders/dated_reminders.php @@ -134,7 +134,7 @@ function updateme(id){ }, function(data) { if (data == 'error') { - alert(""); + alert(); } else { if (id > 0) { $(".drTD").html('

...

'); diff --git a/interface/main/dated_reminders/dated_reminders_add.php b/interface/main/dated_reminders/dated_reminders_add.php index 2fcffe1649c3..ffe611761f3a 100644 --- a/interface/main/dated_reminders/dated_reminders_add.php +++ b/interface/main/dated_reminders/dated_reminders_add.php @@ -124,7 +124,7 @@ // ------------ 1) refresh parent window this updates if sent to self echo ' if (opener && !opener.closed && opener.updateme) opener.updateme("new");'; // ------------ 2) communicate with user - echo ' alert("' . xls('Reminder Sent') . '");'; + echo ' alert(' . xlj('Reminder Sent') . ');'; // ------------ 3) close this window echo ' dlgclose();'; echo ''; diff --git a/interface/modules/zend_modules/module/Application/src/Application/Helper/TranslatorViewHelper.php b/interface/modules/zend_modules/module/Application/src/Application/Helper/TranslatorViewHelper.php index 98b20920922c..c5fce0c691c0 100644 --- a/interface/modules/zend_modules/module/Application/src/Application/Helper/TranslatorViewHelper.php +++ b/interface/modules/zend_modules/module/Application/src/Application/Helper/TranslatorViewHelper.php @@ -28,33 +28,4 @@ public function xl($str) { return xl($str); } - - - /** - * Translates a function and escapes any html rendering it as strictly text. - */ - public function escape($str) - { - return xlt($str); - } - - /** - * Translates a function escaping html attribute values - * @param string $str - * @return string - */ - public function safeAttribute($str) - { - return xla($str); - } - - /** - * Language converter - * @param string $str - * @return string - */ - public function safeJavascript($str) - { - return xls($str); - } } diff --git a/interface/modules/zend_modules/module/Application/src/Application/Listener/Listener.php b/interface/modules/zend_modules/module/Application/src/Application/Listener/Listener.php index 4041ce684006..0c27c0a85788 100644 --- a/interface/modules/zend_modules/module/Application/src/Application/Listener/Listener.php +++ b/interface/modules/zend_modules/module/Application/src/Application/Listener/Listener.php @@ -81,13 +81,4 @@ public static function z_xla($str) return xla($str); } - /** - * Language converter - * @param string $str - * @return string - */ - public static function z_xls($str) - { - return xls($str); - } } diff --git a/library/FeeSheetHtml.class.php b/library/FeeSheetHtml.class.php index 4edd2e9f6b6b..1abdf88f0c7e 100644 --- a/library/FeeSheetHtml.class.php +++ b/library/FeeSheetHtml.class.php @@ -333,16 +333,16 @@ function jsLineItemValidation(f) { } } if (!ndcok) { - alert('" . xls('Format incorrect for NDC') . "\"' + ndc + - '\", " . xls('should be like nnnnn-nnnn-nn') . "'); + alert(" . xlj('Format incorrect for NDC') . " + '\"' + ndc + + '\", ' + " . xlj('should be like nnnnn-nnnn-nn') . "); if (f[pfx+'[ndcnum]'].focus) f[pfx+'[ndcnum]'].focus(); return false; } // Check for valid quantity. var qty = f[pfx+'[ndcqty]'].value - 0; if (isNaN(qty) || qty <= 0) { - alert('" . xls('Quantity for NDC') . " \"' + ndc + - '\" " . xls('is not valid (decimal fractions are OK).') . "'); + alert(" . xlj('Quantity for NDC') . " + ' \"' + ndc + + '\" ' + " . xlj('is not valid (decimal fractions are OK).') . "); if (f[pfx+'[ndcqty]'].focus) f[pfx+'[ndcqty]'].focus(); return false; } @@ -365,7 +365,7 @@ function jsLineItemValidation(f) { tmp_meth == '4450' || // male condoms tmp_meth == '4570'); // male vasectomy if (!male_compatible_method) { - if (!confirm('" . xls('Warning: Contraceptive method is not compatible with a male patient.') . "')) + if (!confirm(" . xlj('Warning: Contraceptive method is not compatible with a male patient.') . ")) return false; } "; @@ -422,7 +422,7 @@ function jsLineItemValidation(f) { } } if (!got_svc) { - if (!confirm('" . xls('Warning: There is no service matching the contraceptive product.') . "')) + if (!confirm(" . xlj('Warning: There is no service matching the contraceptive product.') . ")) return false; } } @@ -433,7 +433,7 @@ function jsLineItemValidation(f) { if (isset($GLOBALS['code_types']['MA'])) { $s .= " if (required_code_count == 0) { - if (!confirm('" . xls('You have not entered any clinical services or products. Click Cancel to add them. Or click OK if you want to save as-is.') . "')) { + if (!confirm(" . xlj('You have not entered any clinical services or products. Click Cancel to add them. Or click OK if you want to save as-is.') . ")) { return false; } } diff --git a/library/clinical_rules.php b/library/clinical_rules.php index 0144e4d05002..e73947df3e5d 100644 --- a/library/clinical_rules.php +++ b/library/clinical_rules.php @@ -188,7 +188,7 @@ function clinical_summary_widget($patient_id, $mode, $dateTarget = '', $organize // If there are new action(s), then throw a popup (if the enable_cdr_new_crp global is turned on) // Note I am taking advantage of a slight hack in order to run javascript within code that // is being passed via an ajax call by using a dummy image. - echo ' '1','list_id' => 'rule_action'], $item) . '\n'; } - echo '\n' . '(' . xls('See the Clinical Reminders widget for more details') . ')'; + echo '\n\' + ' . xlj('See the Clinical Reminders widget for more details') . ' + \''; echo '\');this.parentNode.removeChild(this);" />'; } } diff --git a/library/htmlspecialchars.inc.php b/library/htmlspecialchars.inc.php index f9b90051b786..f1db8bf814c7 100644 --- a/library/htmlspecialchars.inc.php +++ b/library/htmlspecialchars.inc.php @@ -265,11 +265,3 @@ function xlj($key) return js_escape(hsc_private_xl_or_warn($key)); } -/* - * @Deprecated - *Translate via xl() and then escape via addslashes for use with javascript literals - */ -function xls($key) -{ - return addslashes((string) hsc_private_xl_or_warn($key)); -} diff --git a/non-standard-translation-functions.md b/non-standard-translation-functions.md new file mode 100644 index 000000000000..81f5fadb2538 --- /dev/null +++ b/non-standard-translation-functions.md @@ -0,0 +1,26 @@ +# Non-Standard Translation Function Definitions + +Translation functions should be defined in: +- `library/translation.inc.php` +- `library/htmlspecialchars.inc.php` + +The following files define translation-related functions outside these standard locations. +These are thin wrappers around the standard global `xl*` functions. + +## interface/modules/zend_modules/module/Application/src/Application/Listener/Listener.php + +Adapter class for OpenEMR language conversion within the Zend module system. + +| Line | Function | Wraps | +|------|----------|-------| +| 59 | `z_xl($str)` | `xl()` | +| 69 | `z_xlt($str)` | `xlt()` | +| 79 | `z_xla($str)` | `xla()` | + +## interface/modules/zend_modules/module/Application/src/Application/Helper/TranslatorViewHelper.php + +Laminas view helper that decorates OpenEMR translation functions for use in `.phtml` templates. + +| Line | Function | Wraps | +|------|----------|-------| +| 27 | `xl($str)` | `xl()` | diff --git a/src/Common/Twig/TwigExtension.php b/src/Common/Twig/TwigExtension.php index 383087ca37fc..20c44277d18c 100644 --- a/src/Common/Twig/TwigExtension.php +++ b/src/Common/Twig/TwigExtension.php @@ -308,10 +308,6 @@ public function getFilters(): array 'xlj', fn($string) => xlj($string) ), - new TwigFilter( - 'xls', - fn($string) => xls($string) - ), new TwigFilter( 'money', fn($amount) => oeFormatMoney($amount) From c11c7a6820155da9ac242b5f6c01875c31d927bd Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Mon, 29 Dec 2025 15:17:03 -0500 Subject: [PATCH 023/139] fix(ci): correct dclint argument order and run on all PRs (#9959) (#10012) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The docker-compose-lint workflow was failing with "Not enough non-option arguments: got 0, need at least 1" because dclint expects positional file arguments before options. The --exclude flag was consuming file paths as its values. Also removed the paths filter so the workflow runs on all PRs/pushes to master and rel-* branches, ensuring compose files are always validated. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 --- .github/workflows/docker-compose-lint.yml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/docker-compose-lint.yml b/.github/workflows/docker-compose-lint.yml index 54ff32cdf446..3b3bc7068a8c 100644 --- a/.github/workflows/docker-compose-lint.yml +++ b/.github/workflows/docker-compose-lint.yml @@ -5,20 +5,10 @@ on: branches: - master - rel-* - paths: - - '**/*compose*.yml' - - '**/*compose*.yaml' - - '.github/workflows/docker-compose-lint.yml' - - '.dclintrc.yaml' pull_request: branches: - master - rel-* - paths: - - '**/*compose*.yml' - - '**/*compose*.yaml' - - '.github/workflows/docker-compose-lint.yml' - - '.dclintrc.yaml' permissions: contents: read @@ -67,9 +57,9 @@ jobs: - name: Run dclint on changed files if: steps.files-to-check.outputs.mode == 'files' run: | - docker run --rm --volume "$PWD:$PWD" --workdir "$PWD" zavoloklom/dclint:3.1.0 --exclude .github ${{ steps.files-to-check.outputs.files }} - + docker run --rm --volume "$PWD:$PWD" --workdir "$PWD" zavoloklom/dclint:3.1.0 ${{ steps.files-to-check.outputs.files }} --exclude .github + - name: Run dclint recursively if: steps.files-to-check.outputs.mode == 'recursive' run: | - docker run --rm --volume "$PWD:$PWD" --workdir "$PWD" zavoloklom/dclint:3.1.0 --exclude .github --recursive ci/ docker/ + docker run --rm --volume "$PWD:$PWD" --workdir "$PWD" zavoloklom/dclint:3.1.0 ci/ docker/ --recursive --exclude .github From 2af5122144371be6ac3140dab7c92e73ea448fe6 Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Mon, 29 Dec 2025 15:17:45 -0500 Subject: [PATCH 024/139] fix(sql): aggregate uuid in care_teams migration GROUP BY (#10011) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The SELECT query for migrating care_teams_v1 to care_teams included uuid without aggregating it, which is invalid SQL in strict mode. Fixes #9984 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 --- sql/7_0_3-to-7_0_4_upgrade.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/7_0_3-to-7_0_4_upgrade.sql b/sql/7_0_3-to-7_0_4_upgrade.sql index 594b19cc430a..e583607b6b21 100644 --- a/sql/7_0_3-to-7_0_4_upgrade.sql +++ b/sql/7_0_3-to-7_0_4_upgrade.sql @@ -233,7 +233,7 @@ CREATE TABLE `care_teams` ( #IfTable care_teams_v1 INSERT INTO `care_teams` (`uuid`, `pid`, `status`, `team_name`, `date_created`, `date_updated`) SELECT - `uuid`, + MIN(`uuid`) AS `uuid`, `pid`, `status`, `team_name`, From e1395417a2eee52c7c5d2624af3adf7e0f0bc27a Mon Sep 17 00:00:00 2001 From: steve waite Date: Tue, 30 Dec 2025 08:16:48 -0500 Subject: [PATCH 025/139] fix: fatal error rendering allergies (#10010) --- templates/patient/card/allergies.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/patient/card/allergies.html.twig b/templates/patient/card/allergies.html.twig index 54ea5316a2a1..43243285171d 100644 --- a/templates/patient/card/allergies.html.twig +++ b/templates/patient/card/allergies.html.twig @@ -41,7 +41,7 @@ list_group_container_class_list with an array of strings representing class name
{% set _severity = getListItemTitle('severity_ccda', l.severity_al) %} -
+
{{ l.title|text }} ({{ _severity|text }})
From 5f20b756441fc9868f43410a9ef97536c38b2ba6 Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Tue, 30 Dec 2025 08:34:56 -0500 Subject: [PATCH 026/139] Merge commit from fork Co-authored-by: hungdq --- interface/forms/gad7/view.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/interface/forms/gad7/view.php b/interface/forms/gad7/view.php index 686bb64f63ca..bd50f23431e0 100644 --- a/interface/forms/gad7/view.php +++ b/interface/forms/gad7/view.php @@ -99,8 +99,8 @@ function nosave_exit() { @@ -119,7 +119,7 @@ function nosave_exit() {
From a024f46eba73d84d734a849a92978f8eabae13f9 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Tue, 30 Dec 2025 12:56:48 -0500 Subject: [PATCH 027/139] fix(oehttpkernel): eventdispatcherinterface type inconsistency (#10016) * Initial plan * Fix EventDispatcherInterface type inconsistency in OEHttpKernel and Kernel Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> --- src/Core/Kernel.php | 2 +- src/Core/OEHttpKernel.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Core/Kernel.php b/src/Core/Kernel.php index f60f78baca45..c4339d527aa0 100644 --- a/src/Core/Kernel.php +++ b/src/Core/Kernel.php @@ -14,8 +14,8 @@ use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag; use Psr\Container\ContainerInterface; use Symfony\Component\EventDispatcher\EventDispatcher; +use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Symfony\Component\EventDispatcher\DependencyInjection\RegisterListenersPass; -use Symfony\Contracts\EventDispatcher\EventDispatcherInterface; /** * Class Kernel. diff --git a/src/Core/OEHttpKernel.php b/src/Core/OEHttpKernel.php index 5ff3179ebd08..ee48b73af62a 100644 --- a/src/Core/OEHttpKernel.php +++ b/src/Core/OEHttpKernel.php @@ -4,11 +4,11 @@ use OpenEMR\Common\Logging\SystemLogger; use Psr\Log\LoggerInterface; +use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Symfony\Component\HttpFoundation\RequestStack; use Symfony\Component\HttpKernel\Controller\ArgumentResolverInterface; use Symfony\Component\HttpKernel\Controller\ControllerResolverInterface; use Symfony\Component\HttpKernel\HttpKernel; -use Symfony\Contracts\EventDispatcher\EventDispatcherInterface; class OEHttpKernel extends HttpKernel { @@ -27,7 +27,7 @@ public function getGlobalsBag(): OEGlobalsBag return $this->globalsBag; } - public function getEventDispatcher(): \Symfony\Component\EventDispatcher\EventDispatcherInterface + public function getEventDispatcher(): EventDispatcherInterface { return $this->dispatcher; } From 78b30581038b68bd5db9a44d2573ef64f485ead8 Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Tue, 30 Dec 2025 14:26:29 -0500 Subject: [PATCH 028/139] fix(ci): update PHPStan baselines to reflect codebase changes (#10018) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Regenerate the specialized PHPStan baselines (globals, database, curl) and remove duplicate entries from the main baseline that were causing count mismatches. Fixes #10014 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 --- .phpstan/phpstan-curl-baseline.neon | 48 - .phpstan/phpstan-database-baseline.neon | 320 +- .phpstan/phpstan-globals-baseline.neon | 28 +- .phpstan/phpstan.github.neon | 35427 +++++++++++----------- 4 files changed, 17661 insertions(+), 18162 deletions(-) diff --git a/.phpstan/phpstan-curl-baseline.neon b/.phpstan/phpstan-curl-baseline.neon index 35c3c6ec337f..1d554db3d616 100644 --- a/.phpstan/phpstan-curl-baseline.neon +++ b/.phpstan/phpstan-curl-baseline.neon @@ -232,26 +232,6 @@ parameters: identifier: openemr.forbiddenCurlFunction count: 5 path: ../modules/sms_email_reminder/sms_tmb4.php - - message: '#^Raw curl_\* function curl_close\(\) is forbidden\. Use GuzzleHttp\\Client or OpenEMR\\Common\\Http\\oeHttp instead\.$#' - identifier: openemr.forbiddenCurlFunction - count: 2 - path: ../portal/patient/fwk/libs/verysimple/HTTP/HttpRequest.php - - message: '#^Raw curl_\* function curl_error\(\) is forbidden\. Use GuzzleHttp\\Client or OpenEMR\\Common\\Http\\oeHttp instead\.$#' - identifier: openemr.forbiddenCurlFunction - count: 2 - path: ../portal/patient/fwk/libs/verysimple/HTTP/HttpRequest.php - - message: '#^Raw curl_\* function curl_exec\(\) is forbidden\. Use GuzzleHttp\\Client or OpenEMR\\Common\\Http\\oeHttp instead\.$#' - identifier: openemr.forbiddenCurlFunction - count: 2 - path: ../portal/patient/fwk/libs/verysimple/HTTP/HttpRequest.php - - message: '#^Raw curl_\* function curl_init\(\) is forbidden\. Use GuzzleHttp\\Client or OpenEMR\\Common\\Http\\oeHttp instead\.$#' - identifier: openemr.forbiddenCurlFunction - count: 7 - path: ../portal/patient/fwk/libs/verysimple/HTTP/HttpRequest.php - - message: '#^Raw curl_\* function curl_setopt\(\) is forbidden\. Use GuzzleHttp\\Client or OpenEMR\\Common\\Http\\oeHttp instead\.$#' - identifier: openemr.forbiddenCurlFunction - count: 28 - path: ../portal/patient/fwk/libs/verysimple/HTTP/HttpRequest.php - message: '#^Raw curl_\* function curl_close\(\) is forbidden\. Use GuzzleHttp\\Client or OpenEMR\\Common\\Http\\oeHttp instead\.$#' identifier: openemr.forbiddenCurlFunction count: 2 @@ -324,31 +304,3 @@ parameters: identifier: openemr.forbiddenCurlFunction count: 6 path: ../src/Telemetry/TelemetryService.php - - message: '#^Raw curl_\* function curl_close\(\) is forbidden\. Use GuzzleHttp\\Client or OpenEMR\\Common\\Http\\oeHttp instead\.$#' - identifier: openemr.forbiddenCurlFunction - count: 1 - path: ../src/USPS/USPSBase.php - - message: '#^Raw curl_\* function curl_errno\(\) is forbidden\. Use GuzzleHttp\\Client or OpenEMR\\Common\\Http\\oeHttp instead\.$#' - identifier: openemr.forbiddenCurlFunction - count: 1 - path: ../src/USPS/USPSBase.php - - message: '#^Raw curl_\* function curl_error\(\) is forbidden\. Use GuzzleHttp\\Client or OpenEMR\\Common\\Http\\oeHttp instead\.$#' - identifier: openemr.forbiddenCurlFunction - count: 1 - path: ../src/USPS/USPSBase.php - - message: '#^Raw curl_\* function curl_exec\(\) is forbidden\. Use GuzzleHttp\\Client or OpenEMR\\Common\\Http\\oeHttp instead\.$#' - identifier: openemr.forbiddenCurlFunction - count: 1 - path: ../src/USPS/USPSBase.php - - message: '#^Raw curl_\* function curl_getinfo\(\) is forbidden\. Use GuzzleHttp\\Client or OpenEMR\\Common\\Http\\oeHttp instead\.$#' - identifier: openemr.forbiddenCurlFunction - count: 1 - path: ../src/USPS/USPSBase.php - - message: '#^Raw curl_\* function curl_init\(\) is forbidden\. Use GuzzleHttp\\Client or OpenEMR\\Common\\Http\\oeHttp instead\.$#' - identifier: openemr.forbiddenCurlFunction - count: 1 - path: ../src/USPS/USPSBase.php - - message: '#^Raw curl_\* function curl_setopt_array\(\) is forbidden\. Use GuzzleHttp\\Client or OpenEMR\\Common\\Http\\oeHttp instead\.$#' - identifier: openemr.forbiddenCurlFunction - count: 1 - path: ../src/USPS/USPSBase.php diff --git a/.phpstan/phpstan-database-baseline.neon b/.phpstan/phpstan-database-baseline.neon index 37954619bfaa..482c48a9ed5f 100644 --- a/.phpstan/phpstan-database-baseline.neon +++ b/.phpstan/phpstan-database-baseline.neon @@ -2048,14 +2048,6 @@ parameters: identifier: openemr.deprecatedSqlFunction count: 3 path: ../interface/modules/custom_modules/oe-module-weno/templates/weno_users.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Acl/src/Acl/Model/AclTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Acl/src/Acl/Model/AclTable.php - message: '#^Use QueryUtils\:\:querySingleRow\(\) or QueryUtils\:\:fetchRecords\(\) instead of sqlQuery\(\)\.$#' identifier: openemr.deprecatedSqlFunction count: 2 @@ -2072,54 +2064,10 @@ parameters: identifier: openemr.deprecatedSqlFunction count: 3 path: ../interface/modules/zend_modules/module/Application/src/Application/Listener/ModuleMenuSubscriber.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Exception\\ExceptionInterface" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\Feature\\GlobalAdapterFeature" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Application/src/Application/Model/SendtoTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Application/src/Application/Model/SendtoTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\AdapterInterface" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/ModuleconfigController.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\AdapterInterface" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Form/ModuleconfigForm.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - message: '#^Use QueryUtils\:\:querySingleRow\(\) or QueryUtils\:\:fetchRecords\(\) instead of sqlQuery\(\)\.$#' identifier: openemr.deprecatedSqlFunction count: 3 path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdTable.php - message: '#^Use QueryUtils\:\:fetchRecords\(\) or QueryUtils\:\:fetchArrayFromResultSet\(\) instead of sqlFetchArray\(\)\.$#' identifier: openemr.deprecatedSqlFunction count: 1 @@ -2128,25 +2076,13 @@ parameters: identifier: openemr.deprecatedSqlFunction count: 1 path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/Configuration.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\AdapterInterface" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - message: '#^Use QueryUtils\:\:commitTransaction\(\) instead of sqlCommitTrans\(\)\.$#' identifier: openemr.deprecatedSqlFunction count: 1 path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - message: '#^Use QueryUtils\:\:fetchRecords\(\) or QueryUtils\:\:fetchArrayFromResultSet\(\) instead of sqlFetchArray\(\)\.$#' identifier: openemr.deprecatedSqlFunction - count: 2 + count: 1 path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - message: '#^Use QueryUtils\:\:querySingleRow\(\) or QueryUtils\:\:fetchRecords\(\) instead of sqlQuery\(\)\.$#' identifier: openemr.deprecatedSqlFunction @@ -2158,88 +2094,12 @@ parameters: path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - message: '#^Use QueryUtils\:\:sqlStatementThrowException\(\) or QueryUtils\:\:fetchRecords\(\) instead of sqlStatement\(\)\.$#' identifier: openemr.deprecatedSqlFunction - count: 2 + count: 1 path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - message: '#^Use QueryUtils\:\:startTransaction\(\) instead of sqlBeginTrans\(\)\.$#' identifier: openemr.deprecatedSqlFunction count: 1 path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/MapperTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/MapperTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/Moduleconfig.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Select" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/Moduleconfig.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/Moduleconfig.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/Moduleconfig.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/ModuleconfigTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Select" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/ModuleconfigTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/ModuleconfigTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/ModuleconfigTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/SetupTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/SetupTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Ccr/Module.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Ccr/config/module.config.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Ccr/config/module.config.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Model/CcrTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Model/CcrTable.php - message: '#^Use QueryUtils\:\:commitTransaction\(\) instead of sqlCommitTrans\(\)\.$#' identifier: openemr.deprecatedSqlFunction count: 2 @@ -2252,86 +2112,6 @@ parameters: identifier: openemr.deprecatedSqlFunction count: 2 path: ../interface/modules/zend_modules/module/CodeTypes/src/CodeTypes/Listener/CodeTypeEventsSubscriber.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Documents/src/Documents/Model/DocumentsTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Immunization/config/module.config.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Select" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Installer/Module.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Installer/config/module.config.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\Feature\\GlobalAdapterFeature" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\AdapterInterface" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTableGateway.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Sql" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTableGateway.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\TableIdentifier" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTableGateway.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTableGateway.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Multipledb/config/module.config.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Multipledb/src/Multipledb/Model/MultipledbTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Expression" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Multipledb/src/Multipledb/Model/MultipledbTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Predicate" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Multipledb/src/Multipledb/Model/MultipledbTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Multipledb/src/Multipledb/Model/MultipledbTable.php - message: '#^Use QueryUtils\:\:querySingleRow\(\) or QueryUtils\:\:fetchRecords\(\) instead of sqlQuery\(\)\.$#' identifier: openemr.deprecatedSqlFunction count: 2 @@ -2340,50 +2120,6 @@ parameters: identifier: openemr.deprecatedSqlFunction count: 1 path: ../interface/modules/zend_modules/module/PatientFlowBoard/src/PatientFlowBoard/Listener/PatientFlowBoardEventsSubscriber.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Patientvalidation/Module.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Patientvalidation/config/module.config.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Patientvalidation/src/Patientvalidation/Model/PatientDataTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Expression" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Patientvalidation/src/Patientvalidation/Model/PatientDataTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Predicate" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Patientvalidation/src/Patientvalidation/Model/PatientDataTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Patientvalidation/src/Patientvalidation/Model/PatientDataTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Syndromicsurveillance/config/module.config.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Select" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php - - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' - identifier: openemr.deprecatedLaminasDb - count: 1 - path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php - message: '#^Use QueryUtils\:\:fetchRecords\(\) or QueryUtils\:\:fetchArrayFromResultSet\(\) instead of sqlFetchArray\(\)\.$#' identifier: openemr.deprecatedSqlFunction count: 3 @@ -3054,7 +2790,7 @@ parameters: path: ../interface/patient_file/summary/advancedirectives.php - message: '#^Use QueryUtils\:\:querySingleRow\(\) or QueryUtils\:\:fetchRecords\(\) instead of sqlQuery\(\)\.$#' identifier: openemr.deprecatedSqlFunction - count: 3 + count: 2 path: ../interface/patient_file/summary/advancedirectives.php - message: '#^Use QueryUtils\:\:sqlStatementThrowException\(\) or QueryUtils\:\:fetchRecords\(\) instead of sqlStatement\(\)\.$#' identifier: openemr.deprecatedSqlFunction @@ -6036,22 +5772,6 @@ parameters: identifier: openemr.deprecatedSqlFunction count: 1 path: ../src/Menu/PatientMenuRole.php - - message: '#^Use QueryUtils\:\:fetchRecords\(\) or QueryUtils\:\:fetchArrayFromResultSet\(\) instead of sqlFetchArray\(\)\.$#' - identifier: openemr.deprecatedSqlFunction - count: 7 - path: ../src/Patient/Cards/CareTeamViewCard.php - - message: '#^Use QueryUtils\:\:querySingleRow\(\) or QueryUtils\:\:fetchRecords\(\) instead of sqlQuery\(\)\.$#' - identifier: openemr.deprecatedSqlFunction - count: 1 - path: ../src/Patient/Cards/CareTeamViewCard.php - - message: '#^Use QueryUtils\:\:sqlInsert\(\) instead of sqlInsert\(\)\.$#' - identifier: openemr.deprecatedSqlFunction - count: 1 - path: ../src/Patient/Cards/CareTeamViewCard.php - - message: '#^Use QueryUtils\:\:sqlStatementThrowException\(\) or QueryUtils\:\:fetchRecords\(\) instead of sqlStatement\(\)\.$#' - identifier: openemr.deprecatedSqlFunction - count: 8 - path: ../src/Patient/Cards/CareTeamViewCard.php - message: '#^Use QueryUtils\:\:fetchRecords\(\) or QueryUtils\:\:fetchArrayFromResultSet\(\) instead of sqlFetchArray\(\)\.$#' identifier: openemr.deprecatedSqlFunction count: 1 @@ -6098,7 +5818,7 @@ parameters: path: ../src/Reports/RealWorldTesting.php - message: '#^Use QueryUtils\:\:querySingleRow\(\) instead of sqlQueryNoLog\(\)\.$#' identifier: openemr.deprecatedSqlFunction - count: 3 + count: 2 path: ../src/RestControllers/AuthorizationController.php - message: '#^Use QueryUtils\:\:querySingleRow\(\) or QueryUtils\:\:fetchRecords\(\) instead of sqlQuery\(\)\.$#' identifier: openemr.deprecatedSqlFunction @@ -6164,14 +5884,6 @@ parameters: identifier: openemr.deprecatedSqlFunction count: 1 path: ../src/Services/CarePlanService.php - - message: '#^Use QueryUtils\:\:fetchRecords\(\) or QueryUtils\:\:fetchArrayFromResultSet\(\) instead of sqlFetchArray\(\)\.$#' - identifier: openemr.deprecatedSqlFunction - count: 3 - path: ../src/Services/CareTeamService.php - - message: '#^Use QueryUtils\:\:sqlStatementThrowException\(\) or QueryUtils\:\:fetchRecords\(\) instead of sqlStatement\(\)\.$#' - identifier: openemr.deprecatedSqlFunction - count: 3 - path: ../src/Services/CareTeamService.php - message: '#^Use QueryUtils\:\:fetchRecords\(\) or QueryUtils\:\:fetchArrayFromResultSet\(\) instead of sqlFetchArray\(\)\.$#' identifier: openemr.deprecatedSqlFunction count: 1 @@ -6296,10 +6008,6 @@ parameters: identifier: openemr.deprecatedSqlFunction count: 1 path: ../src/Services/FHIR/Condition/FhirConditionProblemListItemService.php - - message: '#^Use QueryUtils\:\:fetchRecords\(\) or QueryUtils\:\:fetchArrayFromResultSet\(\) instead of sqlFetchArray\(\)\.$#' - identifier: openemr.deprecatedSqlFunction - count: 1 - path: ../src/Services/FHIR/Condition/FhirConditionProblemsHealthConcernService.php - message: '#^Use QueryUtils\:\:querySingleRow\(\) instead of sqlQueryNoLog\(\)\.$#' identifier: openemr.deprecatedSqlFunction count: 2 @@ -6456,14 +6164,6 @@ parameters: identifier: openemr.deprecatedSqlFunction count: 1 path: ../src/Services/PatientAccessOnsiteService.php - - message: '#^Use QueryUtils\:\:fetchRecords\(\) or QueryUtils\:\:fetchArrayFromResultSet\(\) instead of sqlFetchArray\(\)\.$#' - identifier: openemr.deprecatedSqlFunction - count: 1 - path: ../src/Services/PatientAdvanceDirectiveService.php - - message: '#^Use QueryUtils\:\:sqlStatementThrowException\(\) or QueryUtils\:\:fetchRecords\(\) instead of sqlStatement\(\)\.$#' - identifier: openemr.deprecatedSqlFunction - count: 1 - path: ../src/Services/PatientAdvanceDirectiveService.php - message: '#^Use QueryUtils\:\:fetchRecords\(\) or QueryUtils\:\:fetchArrayFromResultSet\(\) instead of sqlFetchArray\(\)\.$#' identifier: openemr.deprecatedSqlFunction count: 1 @@ -6590,7 +6290,7 @@ parameters: path: ../src/Services/ProcedureService.php - message: '#^Use QueryUtils\:\:sqlStatementThrowException\(\) or QueryUtils\:\:fetchRecords\(\) instead of sqlStatement\(\)\.$#' identifier: openemr.deprecatedSqlFunction - count: 20 + count: 19 path: ../src/Services/ProcedureService.php - message: '#^Use QueryUtils\:\:querySingleRow\(\) or QueryUtils\:\:fetchRecords\(\) instead of sqlQuery\(\)\.$#' identifier: openemr.deprecatedSqlFunction @@ -6666,7 +6366,7 @@ parameters: path: ../src/Services/SurgeryService.php - message: '#^Use QueryUtils\:\:querySingleRow\(\) instead of sqlQueryNoLog\(\)\.$#' identifier: openemr.deprecatedSqlFunction - count: 4 + count: 3 path: ../src/Services/TrustedUserService.php - message: '#^Use QueryUtils\:\:fetchRecords\(\) or QueryUtils\:\:fetchArrayFromResultSet\(\) instead of sqlFetchArray\(\)\.$#' identifier: openemr.deprecatedSqlFunction @@ -6892,3 +6592,11 @@ parameters: identifier: openemr.deprecatedSqlFunction count: 3 path: ../tests/Tests/Validators/PatientValidatorTest.php + - message: '#^GenID is deprecated\. Use QueryUtils\:\:generateId\(\) or QueryUtils\:\:ediGenerateId\(\) instead\.$#' + identifier: openemr.deprecatedSqlFunction + count: 1 + path: ../library/classes/Tree.class.php + - message: '#^GenID is deprecated\. Use QueryUtils\:\:generateId\(\) or QueryUtils\:\:ediGenerateId\(\) instead\.$#' + identifier: openemr.deprecatedSqlFunction + count: 4 + path: ../src/Gacl/GaclApi.php diff --git a/.phpstan/phpstan-globals-baseline.neon b/.phpstan/phpstan-globals-baseline.neon index 1f092e64ce93..ac017d452272 100644 --- a/.phpstan/phpstan-globals-baseline.neon +++ b/.phpstan/phpstan-globals-baseline.neon @@ -2,7 +2,7 @@ parameters: ignoreErrors: - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' identifier: openemr.forbiddenGlobalsAccess - count: 5 + count: 1 path: ../ccdaservice/ccda_gateway.php - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' identifier: openemr.forbiddenGlobalsAccess @@ -1478,7 +1478,7 @@ parameters: path: ../interface/patient_file/encounter/find_code_popup.php - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' identifier: openemr.forbiddenGlobalsAccess - count: 22 + count: 21 path: ../interface/patient_file/encounter/forms.php - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' identifier: openemr.forbiddenGlobalsAccess @@ -1716,10 +1716,6 @@ parameters: identifier: openemr.forbiddenGlobalsAccess count: 1 path: ../interface/patient_tracker/patient_tracker_status.php - - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' - identifier: openemr.forbiddenGlobalsAccess - count: 1 - path: ../interface/practice/address_verify.php - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' identifier: openemr.forbiddenGlobalsAccess count: 1 @@ -2264,10 +2260,6 @@ parameters: identifier: openemr.forbiddenGlobalsAccess count: 1 path: ../library/classes/Tree.class.php - - message: '#^GenID is deprecated\. Use QueryUtils\:\:generateId\(\) or QueryUtils\:\:ediGenerateId\(\) instead\.$#' - identifier: openemr.deprecatedSqlFunction - count: 1 - path: ../library/classes/Tree.class.php - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' identifier: openemr.forbiddenGlobalsAccess count: 11 @@ -2616,14 +2608,6 @@ parameters: identifier: openemr.forbiddenGlobalsAccess count: 10 path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQLi.php - - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' - identifier: openemr.forbiddenGlobalsAccess - count: 1 - path: ../portal/patient/fwk/libs/verysimple/HTTP/HttpRequest.php - - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' - identifier: openemr.forbiddenGlobalsAccess - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' identifier: openemr.forbiddenGlobalsAccess count: 5 @@ -3016,10 +3000,6 @@ parameters: identifier: openemr.forbiddenGlobalsAccess count: 1 path: ../src/Gacl/GaclAdminApi.php - - message: '#^GenID is deprecated\. Use QueryUtils\:\:generateId\(\) or QueryUtils\:\:ediGenerateId\(\) instead\.$#' - identifier: openemr.deprecatedSqlFunction - count: 4 - path: ../src/Gacl/GaclApi.php - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' identifier: openemr.forbiddenGlobalsAccess count: 3 @@ -3224,10 +3204,6 @@ parameters: identifier: openemr.forbiddenGlobalsAccess count: 1 path: ../src/Services/BaseService.php - - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' - identifier: openemr.forbiddenGlobalsAccess - count: 3 - path: ../src/Services/CDADocumentService.php - message: '#^Direct access to \$GLOBALS is forbidden\. Use OEGlobalsBag\:\:getInstance\(\)\-\>get\(\) instead\.$#' identifier: openemr.forbiddenGlobalsAccess count: 1 diff --git a/.phpstan/phpstan.github.neon b/.phpstan/phpstan.github.neon index 4e3875ff9ed1..856acc3dcd9c 100644 --- a/.phpstan/phpstan.github.neon +++ b/.phpstan/phpstan.github.neon @@ -3,17791 +3,17654 @@ includes: - phpstan-database-baseline.neon - phpstan-globals-baseline.neon - phpstan-curl-baseline.neon - parameters: - reportUnmatchedIgnoredErrors: false + reportUnmatchedIgnoredErrors: true scanFiles: - ../vendor/phpunit/phpunit/src/Framework/TestCase.php excludePaths: - ../sites/default/documents/smarty ignoreErrors: - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../Documentation/help_files/sl_eob_help.php - - message: '#^Variable \$config might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../admin.php - - message: '#^Variable \$database_acl might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../admin.php - - message: '#^Variable \$database_patch might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../admin.php - - message: '#^Variable \$dbase might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../admin.php - - message: '#^Variable \$dbh might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../admin.php - - message: '#^Variable \$host might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../admin.php - - message: '#^Variable \$login might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../admin.php - - message: '#^Variable \$pass might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../admin.php - - message: '#^Variable \$port might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../admin.php - - message: '#^Variable \$v_acl might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../admin.php - - message: '#^Variable \$v_database might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../admin.php - - message: '#^Variable \$v_realpatch might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../admin.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../ccdaservice/ccda_gateway.php - - message: '#^Variable \$authorID might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../ccr/createCCRActor.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 110 - path: ../ccr/createCCRActor.php - - message: '#^Variable \$e_Actors might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../ccr/createCCRActor.php - - message: '#^Variable \$oemrID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRActor.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 32 - path: ../ccr/createCCRAlerts.php - - message: '#^Variable \$e_Alerts might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRAlerts.php - - message: '#^Variable \$sourceID might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../ccr/createCCRAlerts.php - - message: '#^Variable \$authorID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRHeader.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 21 - path: ../ccr/createCCRHeader.php - - message: '#^Variable \$e_ccr might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../ccr/createCCRHeader.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 18 - path: ../ccr/createCCRImmunization.php - - message: '#^Variable \$e_Immunizations might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRImmunization.php - - message: '#^Variable \$sourceID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRImmunization.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 39 - path: ../ccr/createCCRMedication.php - - message: '#^Variable \$e_Medications might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRMedication.php - - message: '#^Variable \$sourceID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRMedication.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 32 - path: ../ccr/createCCRProblem.php - - message: '#^Variable \$e_Problems might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRProblem.php - - message: '#^Variable \$sourceID might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../ccr/createCCRProblem.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 33 - path: ../ccr/createCCRProcedure.php - - message: '#^Variable \$e_Procedures might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRProcedure.php - - message: '#^Variable \$sourceID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRProcedure.php - - message: '#^Variable \$authorID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRResult.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 39 - path: ../ccr/createCCRResult.php - - message: '#^Variable \$e_Results might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRResult.php - - message: '#^Variable \$extension might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/transmitCCD.php - - message: '#^Variable \$text_out might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../ccr/transmitCCD.php - - message: '#^Variable \$duplicates on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../contrib/util/ccda_import/import_ccda.php - - message: '#^Variable \$policies_by_payer_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../contrib/util/chart_review_pids.php - - message: '#^Function sqlClose invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../contrib/util/de_identification_upgrade.php - - message: '#^Variable \$sqlconf might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../contrib/util/de_identification_upgrade.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../contrib/util/de_identification_upgrade.php - - message: '#^Variable \$dupecount might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../contrib/util/dupecheck/index.php - - message: '#^Variable \$dupelist might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../contrib/util/dupecheck/index.php - - message: '#^Variable \$sqlconf might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../contrib/util/dupecheck/mergerecords.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../contrib/util/dupscore.cli.php - - message: '#^Variable \$d might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../controllers/C_Document.class.php - - message: '#^Variable \$error might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../controllers/C_Document.class.php - - message: '#^Variable \$filetext might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../controllers/C_Document.class.php - - message: '#^Variable \$from_pathname might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../controllers/C_Document.class.php - - message: '#^Variable \$messages might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../controllers/C_Document.class.php - - message: '#^Variable \$temp_couchdb_url might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../controllers/C_Document.class.php - - message: '#^Variable \$description on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../controllers/C_DocumentCategory.class.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' - identifier: staticMethod.notFound - count: 1 - path: ../controllers/C_Prescription.class.php - - message: '#^Variable \$p might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../controllers/C_Prescription.class.php - - message: '#^Variable \$prescription might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../controllers/C_Prescription.class.php - - message: '#^Variable \$files might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/ajax_download.php - - message: '#^Variable \$qrda_file_path might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/ajax_download.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/ajax_download.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/chart_tracker.php - - message: '#^Variable \$counter might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../custom/code_types.inc.php - - message: '#^Variable \$query might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../custom/code_types.inc.php - - message: '#^Variable \$sql_bind_array might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/code_types.inc.php - - message: '#^Variable \$cqmCodes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/download_qrda.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../custom/download_qrda.php - - message: '#^Variable \$facility_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$facility_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_1_denom might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_1_exclude might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_1_ipp might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_1_numer1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_1_numer2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_1_numer3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_2_denom might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_2_exclude might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_2_ipp might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_2_numer1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_2_numer2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_2_numer3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$userRow might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../custom/export_xml.php - - message: '#^Variable \$alertmsg might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/import_xml.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../custom/import_xml.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/import_xml.php - - message: '#^Variable \$patients might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../custom/qrda_category1.inc.php - - message: '#^Variable \$facilResRow might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../custom/qrda_category1_functions.php - - message: '#^Variable \$gender might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/qrda_category1_functions.php - - message: '#^Variable \$patFname might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/qrda_category1_functions.php - - message: '#^Variable \$patLname might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/qrda_category1_functions.php - - message: '#^Variable \$patientRow might not be defined\.$#' - identifier: variable.undefined - count: 12 - path: ../custom/qrda_category1_functions.php - - message: '#^Variable \$tdTitle might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/qrda_category1_functions.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/zutil.cli.doc_import.php - - message: '#^Access to an undefined property Cache_Lite\:\:\$_memoryCachingState\.$#' - identifier: property.notFound - count: 1 - path: ../gacl/Cache_Lite/Lite.php - - message: '#^Function set_magic_quotes_runtime not found\.$#' - identifier: function.notFound - count: 2 - path: ../gacl/Cache_Lite/Lite.php - - message: '#^Method Cache_Lite\:\:_read\(\) invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../gacl/Cache_Lite/Lite.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/about.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../gacl/admin/about.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 21 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$i might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$options_acl_sections might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$options_aco_sections might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$options_aro_sections might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$options_axo_sections might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$selected_aro_array might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$selected_axo_array might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 36 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../gacl/admin/acl_debug.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 24 - path: ../gacl/admin/acl_debug.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 17 - path: ../gacl/admin/acl_list.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 29 - path: ../gacl/admin/acl_list.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 32 - path: ../gacl/admin/acl_list.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/acl_test.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../gacl/admin/acl_test.php - - message: '#^Variable \$acls might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test2.php - - message: '#^Variable \$avg_acl_check_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test2.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test2.php - - message: '#^Variable \$gacl might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test2.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../gacl/admin/acl_test2.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../gacl/admin/acl_test2.php - - message: '#^Variable \$tmp_aco_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test2.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test3.php - - message: '#^Variable \$gacl might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test3.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../gacl/admin/acl_test3.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../gacl/admin/acl_test3.php - - message: '#^Variable \$tmp_aco_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test3.php - - message: '#^Variable \$tmp_aco_section_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test3.php - - message: '#^Variable \$total_acl_check_time might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/acl_test3.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../gacl/admin/assign_group.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 22 - path: ../gacl/admin/assign_group.php - - message: '#^Variable \$i might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/assign_group.php - - message: '#^Variable \$selected_object_array might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/assign_group.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 20 - path: ../gacl/admin/assign_group.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/edit_group.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 17 - path: ../gacl/admin/edit_group.php - - message: '#^Variable \$retry might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/edit_group.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 13 - path: ../gacl/admin/edit_group.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/edit_object_sections.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 16 - path: ../gacl/admin/edit_object_sections.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 12 - path: ../gacl/admin/edit_object_sections.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../gacl/admin/edit_objects.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 17 - path: ../gacl/admin/edit_objects.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 15 - path: ../gacl/admin/edit_objects.php - - message: '#^Variable \$gacl_options might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/gacl_admin.inc.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/group_admin.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../gacl/admin/group_admin.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../gacl/admin/group_admin.php - - message: '#^Undefined variable\: \$db$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/object_search.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../gacl/admin/object_search.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../gacl/admin/object_search.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 14 - path: ../gacl/admin/object_search.php - - message: '#^Access to an undefined property Profiler\:\:\$output_enabled\.$#' - identifier: property.notFound - count: 2 - path: ../gacl/profiler.inc.php - - message: '#^Access to an undefined property Profiler\:\:\$trace_enabled\.$#' - identifier: property.notFound - count: 2 - path: ../gacl/profiler.inc.php - - message: '#^Variable \$config might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../index.php - - message: '#^Variable \$m_error might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batchEmail.php - - message: '#^Variable \$m_error_count might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/batchcom/batchEmail.php - - message: '#^Variable \$res might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batchEmail.php - - message: '#^Variable \$res might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batchPhoneList.php - - message: '#^Variable \$check_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batch_phone_notification.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batch_phone_notification.php - - message: '#^Variable \$ssql might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batch_phone_notification.php - - message: '#^Variable \$results_log might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batch_reminders.php - - message: '#^Variable \$send_rem_log might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/batchcom/batch_reminders.php - - message: '#^Variable \$file might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/batchcom/batchcom.inc.php - - message: '#^Variable \$flag_on might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batchcom.inc.php - - message: '#^Variable \$line might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batchcom.inc.php - - message: '#^Variable \$choices might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batchcom.php - - message: '#^Variable \$form_err might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../interface/batchcom/batchcom.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batchcom.php - - message: '#^Variable \$email_sender might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/emailnotification.php - - message: '#^Variable \$email_subject might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/emailnotification.php - - message: '#^Variable \$form_err might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/batchcom/emailnotification.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/emailnotification.php - - message: '#^Variable \$notification_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/emailnotification.php - - message: '#^Variable \$provider_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/emailnotification.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/emailnotification.php - - message: '#^Variable \$SMS_gateway_apikey might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$SMS_gateway_password might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$SMS_gateway_username might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$Send_Email_Before_Hours might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$Send_SMS_Before_Hours might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$SettingsId might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$form_err might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$form_err might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/batchcom/smsnotification.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/smsnotification.php - - message: '#^Variable \$notification_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/smsnotification.php - - message: '#^Variable \$provider_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/smsnotification.php - - message: '#^Variable \$sms_gateway_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/smsnotification.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/smsnotification.php - - message: '#^Variable \$CheckBoxBilling might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$DivPut might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$default_x12_partner might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$divnos on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$effective_insurances on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$enc_billing_note might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$left_ubmargin might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$top_ubmargin might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$ub04_support might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/billing_tracker.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/billing/edi_270.php - - message: '#^Variable \$_FILES in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/billing/edi_271.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/edi_271.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/billing/edi_271.php - - message: '#^Variable \$html_str might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edih_main.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 16 - path: ../interface/billing/edih_main.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edih_view.php - - message: '#^Variable \$AccountCode might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$AdjustString might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$CountIndexAbove might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$CountIndexBelow might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$QueryPart might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$Table might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$TypeCode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$bgcolor might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/era_payments.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/era_payments.php - - message: '#^Variable \$claim_file_dir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/get_claim_file.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/indigent_patients_report.php - - message: '#^Variable \$CountIndexBelow might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/new_payment.php - - message: '#^Variable \$PaymentType might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/new_payment.php - - message: '#^Variable \$QueryPart might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/new_payment.php - - message: '#^Variable \$TypeCode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/new_payment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/new_payment.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/new_payment.php - - message: '#^Variable \$PayTotal might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/payment_master.inc.php - - message: '#^Variable \$PostToDate might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/payment_master.inc.php - - message: '#^Variable \$global_amount might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/payment_master.inc.php - - message: '#^Variable \$payment_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/payment_master.inc.php - - message: '#^Variable \$screen might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/payment_master.inc.php - - message: '#^Variable \$bgcolor might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/payment_pat_sel.inc.php - - message: '#^Variable \$hidden_patient_code might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/billing/payment_pat_sel.inc.php - - message: '#^Variable \$employer_data_array might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_billing_report.php - - message: '#^Variable \$insurance_data_array might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_billing_report.php - - message: '#^Variable \$patient_data_array might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_billing_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_billing_report.php - - message: '#^Variable \$catch_provider might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$catch_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$fuser_final_list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$gtotal_fee might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$gtotal_insadj might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$gtotal_inspay might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$gtotal_insref might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$gtotal_patadj might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$gtotal_patpay might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$gtotal_patref might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$line_total might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$line_total_pay might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_inspay might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_inspay might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$provider_info might not be defined\.$#' - identifier: variable.undefined - count: 19 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$query_part_day might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$run_provider might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$totals_only might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$user_info might not be defined\.$#' - identifier: variable.undefined - count: 17 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$catch_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$gtotal_fee might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$gtotal_insadj might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$gtotal_inspay might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$gtotal_patadj might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$gtotal_patpay might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$query_part_day might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$totals_only might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us0_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us0_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us0_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us0_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us0_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us0_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us10_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us10_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us10_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us10_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us10_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us10_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us11_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us11_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us11_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us11_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us11_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us11_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us12_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us12_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us12_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us12_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us12_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us12_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us13_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us13_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us13_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us13_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us13_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us13_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us14_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us14_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us14_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us14_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us14_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us14_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us15_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us15_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us15_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us15_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us15_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us15_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us16_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us16_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us16_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us16_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us16_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us16_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us17_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us17_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us17_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us17_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us17_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us17_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us18_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us18_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us18_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us18_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us18_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us18_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us19_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us19_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us19_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us19_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us19_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us19_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us1_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us1_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us1_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us1_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us1_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us1_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us2_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us2_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us2_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us2_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us2_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us2_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us3_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us3_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us3_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us3_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us3_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us3_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us4_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us4_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us4_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us4_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us4_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us4_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us5_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us5_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us5_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us5_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us5_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us5_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us6_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us6_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us6_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us6_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us6_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us6_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us7_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us7_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us7_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us7_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us7_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us7_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us8_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us8_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us8_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us8_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us8_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us8_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us9_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us9_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us9_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us9_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us9_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us9_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$user_info might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$catch_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$gtotal_fee might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$gtotal_insadj might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$gtotal_inspay might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$gtotal_patadj might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$gtotal_patpay might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$line_total might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$line_total_pay might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$query_part_day might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$totals_only might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us0_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us0_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us0_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us0_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us0_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us0_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us10_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us10_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us10_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us10_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us10_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us10_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us11_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us11_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us11_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us11_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us11_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us11_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us12_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us12_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us12_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us12_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us12_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us12_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us13_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us13_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us13_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us13_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us13_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us13_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us14_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us14_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us14_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us14_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us14_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us14_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us15_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us15_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us15_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us15_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us15_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us15_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us16_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us16_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us16_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us16_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us16_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us16_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us17_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us17_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us17_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us17_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us17_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us17_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us18_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us18_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us18_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us18_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us18_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us18_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us19_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us19_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us19_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us19_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us19_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us19_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us1_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us1_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us1_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us1_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us1_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us1_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us2_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us2_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us2_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us2_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us2_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us2_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us3_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us3_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us3_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us3_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us3_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us3_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us4_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us4_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us4_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us4_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us4_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us4_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us5_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us5_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us5_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us5_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us5_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us5_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us6_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us6_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us6_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us6_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us6_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us6_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us7_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us7_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us7_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us7_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us7_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us7_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us8_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us8_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us8_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us8_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us8_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us8_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us9_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us9_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us9_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us9_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us9_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us9_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$user_info might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$PaymentDateString might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/search_payments.php - - message: '#^Variable \$ResultSearch might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/search_payments.php - - message: '#^Variable \$StringSessionId might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/search_payments.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/search_payments.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/billing/sl_eob_invoice.php - - message: '#^Variable \$tmpadj on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/billing/sl_eob_invoice.php - - message: '#^Variable \$STMT_PRINT_CMD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/sl_eob_search.php - - message: '#^Variable \$STMT_TEMP_FILE might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/billing/sl_eob_search.php - - message: '#^Variable \$countline might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/sl_eob_search.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/billing/sl_eob_search.php - - message: '#^Variable \$docname might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/sl_receipts_report.php - - message: '#^Variable \$docnameleft might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/sl_receipts_report.php - - message: '#^Variable \$doctotal1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/sl_receipts_report.php - - message: '#^Variable \$doctotal2 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/sl_receipts_report.php - - message: '#^Variable \$patient_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/sl_receipts_report.php - - message: '#^Variable \$thedate might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/billing/sl_receipts_report.php - - message: '#^Variable \$revcod might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/ub04_dispose.php - - message: '#^Variable \$revcode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/ub04_dispose.php - - message: '#^Variable \$revcode2 might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/billing/ub04_dispose.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/ub04_form.php - - message: '#^Variable \$ub04id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/ub04_form.php - - message: '#^Variable \$resultpd might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/ub04_helpers.php - - message: '#^Variable \$optionsLabel in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/clickmap/C_AbstractClickmap.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/code_systems/standard_tables_manage.php - - message: '#^Variable \$deIdentificationStatus might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/de_identification_forms/de_identification_screen1.php - - message: '#^Variable \$no_of_items might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/de_identification_screen1.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/de_identification_forms/de_identification_screen1.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/de_identification_forms/de_identification_screen1.php - - message: '#^Variable \$viewmode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/de_identification_screen1.php - - message: '#^Variable \$deIdentificationStatus might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/de_identification_screen2.php - - message: '#^Variable \$filename might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/de_identification_forms/de_identification_screen2.php - - message: '#^Variable \$include_tables might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/de_identification_forms/de_identification_screen2.php - - message: '#^Variable \$sqlconf might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/de_identification_forms/de_identification_screen2.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/de_identification_forms/de_identification_screen2.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/find_code_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/find_code_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/find_drug_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/find_immunization_popup.php - - message: '#^Variable \$no_of_items might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/re_identification_input_screen.php - - message: '#^Variable \$reIdentificationStatus might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/de_identification_forms/re_identification_input_screen.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/de_identification_forms/re_identification_input_screen.php - - message: '#^Variable \$no_of_items might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/re_identification_op_single_patient.php - - message: '#^Variable \$reIdCode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/re_identification_op_single_patient.php - - message: '#^Variable \$sqlconf might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/de_identification_forms/re_identification_op_single_patient.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/de_identification_forms/re_identification_op_single_patient.php - - message: '#^Variable \$status might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/re_identification_op_single_patient.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/drugs/add_edit_drug.php - - message: '#^Variable \$tres might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/drugs/add_edit_drug.php - - message: '#^Variable \$row might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/drugs/add_edit_lot.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/drugs/add_edit_lot.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/drugs/dispense_drug.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/drugs/dispense_drug.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/drugs/dispense_drug.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/drugs/drug_inventory.php - - message: '#^Access to an undefined property eRxPage\:\:\$prescriptions\.$#' - identifier: property.notFound - count: 1 - path: ../interface/eRxPage.php - - message: '#^Undefined variable\: \$encounter$#' - identifier: variable.undefined - count: 1 - path: ../interface/eRxSOAP.php - - message: '#^Method eRxXMLBuilder\:\:createElementText\(\) invoked with 3 parameters, 2 required\.$#' - identifier: arguments.count - count: 1 - path: ../interface/eRxXMLBuilder.php - - message: '#^Undefined variable\: \$jasonzip$#' - identifier: variable.undefined - count: 2 - path: ../interface/eRx_xml.php - - message: '#^Undefined variable\: \$prec$#' - identifier: variable.undefined - count: 1 - path: ../interface/eRx_xml.php - - message: '#^Variable \$jasonzip might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/eRx_xml.php - - message: '#^Variable \$num might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/eRx_xml.php - - message: '#^Variable \$txt might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/eRx_xml.php - - message: '#^Variable \$zip4 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/eRx_xml.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/easipro/pro.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/easipro/pro.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/easipro/pro.php - - message: '#^Variable \$arr_files_php might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/expand_contract_js.php - - message: '#^Variable \$catid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/fax/fax_dispatch.php - - message: '#^Variable \$erow might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/fax/fax_dispatch.php - - message: '#^Variable \$newid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/fax/fax_dispatch.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/fax/fax_dispatch.php - - message: '#^Variable \$tmp_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/fax/fax_dispatch.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/fax/fax_dispatch.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/fax/fax_dispatch.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/ajax_save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/CAMOS/ajax_save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/CAMOS/ajax_save.php - - message: '#^Undefined variable\: \$encounter$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/content_parser.php - - message: '#^Variable \$justify_trimmed might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/content_parser.php - - message: '#^Variable \$code_list in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$days_ago might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$last_encounter_id might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$subtablename might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$tablename might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$tmp in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$to_alter_column might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$to_alter_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$to_alter_table might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$to_delete_from_subtable might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$to_delete_from_table might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$to_delete_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/CAMOS/notegen.php - - message: '#^Variable \$name might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/CAMOS/notegen.php - - message: '#^Variable \$user_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/CAMOS/notegen.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/print.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/view.php - - message: '#^Function cms_field_to_lbf not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/forms/LBF/new.php - - message: '#^Function cms_portal_call not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/forms/LBF/new.php - - message: '#^Undefined variable\: \$BS_COL_CLASS$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$BS_COL_CLASS might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$date_init might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$enrow might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$fs might not be defined\.$#' - identifier: variable.undefined - count: 15 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$ignoreAuth_onsite_portal might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 18 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$svccount might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/LBF/printable.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/LBF/printable.php - - message: '#^Variable \$pdf might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/LBF/printable.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/LBF/printable.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/LBF/printable.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/LBF/printable.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/LBF/printable.php - - message: '#^Variable \$disabled might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/aftercare_plan/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/aftercare_plan/new.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/aftercare_plan/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/aftercare_plan/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/aftercare_plan/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/aftercare_plan/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/aftercare_plan/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/aftercare_plan/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/aftercare_plan/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ankleinjury/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ankleinjury/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ankleinjury/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ankleinjury/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/ankleinjury/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/ankleinjury/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ankleinjury/view.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ankleinjury/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/bronchitis/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/bronchitis/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/bronchitis/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/bronchitis/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/bronchitis/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/bronchitis/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/bronchitis/view.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/bronchitis/view.php - - message: '#^Variable \$all might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/care_plan/new.php - - message: '#^Variable \$care_plan_type might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/care_plan/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/care_plan/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/care_plan/new.php - - message: '#^Variable \$data might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/care_plan/report.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/care_plan/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/care_plan/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/care_plan/save.php - - message: '#^Variable \$key might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/care_plan/templates/careplan_actions.php - - message: '#^Variable \$key might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/care_plan/templates/careplan_reason_row.php - - message: '#^Variable \$reasonCodeStatii might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/care_plan/templates/careplan_reason_row.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/clinic_note/new.php - - message: '#^Variable \$top_bg_line might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/new.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/view.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/view.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/clinic_note/view.php - - message: '#^Variable \$top_bg_line might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/view.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinical_instructions/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/clinical_instructions/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinical_instructions/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/clinical_instructions/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/clinical_instructions/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinical_instructions/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/clinical_notes/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinical_notes/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/clinical_notes/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/clinical_notes/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/dictation/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/dictation/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/dictation/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/dictation/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/dictation/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/dictation/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/dictation/view.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/dictation/view.php - - message: '#^Variable \$BPDN might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$CTLODQUANTITY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$CTLOSQUANTITY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$CTL_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$LENS_MATERIAL might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$LENS_TREATMENTS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODADD2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODCYL might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODHBASE might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODHPD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODMIDADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODMPDN might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODSLABOFF might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODVBASE might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODVERTEXDIST might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODVPD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSADD2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSCYL might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSHBASE might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSHPD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSMIDADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSMPDN might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSSLABOFF might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSVBASE might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSVERTEXDIST might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSVPD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$REFTYPE might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$RXTYPE might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$Single might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$detailed might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$form_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$i might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$insert_this_id might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$HELLO might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ISSUE_CLASSIFICATIONS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSCOMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSCV might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSDERM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSENDOCRINE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSGENERAL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSGI might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSGU might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSHEENT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSIMMUNO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSMUSCULO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSNEURO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSPSYCH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSPULM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$result2 might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$subtype might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$type_index might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/help.php - - message: '#^Variable \$ANTSEG might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/js/eye_base.php - - message: '#^Variable \$EXT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/js/eye_base.php - - message: '#^Variable \$NEURO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/js/eye_base.php - - message: '#^Variable \$RETINA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/js/eye_base.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/js/eye_base.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/new.php - - message: '#^Function build_PMSFH invoked with 0 parameters, 1 required\.$#' - identifier: arguments.count - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Undefined variable\: \$header1$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Undefined variable\: \$k$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Undefined variable\: \$old_OCTs$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Undefined variable\: \$old_VFs$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT10CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT10CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT10SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT10SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT11CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT11CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT11SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT11SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT1CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT1CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT1SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT1SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT2CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT2CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT2SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT2SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT3CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT3CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT3SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT3SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT4CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT4CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT4SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT4SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT5CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT5CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT5SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT5SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT6CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT6CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT6SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT6SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT7CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT7CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT7SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT7SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT8CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT8CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT8SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT8SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT9CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT9CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT9SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT9SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ANTSEG_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARODSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$AROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$AROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$AROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$AROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$AROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$AROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ATROPINE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$BPDD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$BPDN on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CACCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CACCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$COMMENTS on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CONTRASTODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRODSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLODBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLODDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLODSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLOSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLOSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLOSBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLOSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLOSDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLOSSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLSUPPLIEROD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLSUPPLIEROS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CYCLOGYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CYCLOMYDRIL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$DACCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$DACCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$DIL_MEDS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$DM_code might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$DX might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$EXT_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$FAILED_drug might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$FAILED_drugs might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$GLAREODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$GLAREOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$GONIO_values might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$HERTELBASE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LADNEXA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LBROW might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LCAROTID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LCNV might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LCNVII might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LENS_MATERIAL on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LENS_TREATMENTS on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LIODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LIOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LLF might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LLL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LMCT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LMRD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LTEMPART might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LUL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LVFISSURE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITYNORMAL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LI might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LLIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LLSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LRIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LRSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RI might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RLIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RLSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RRIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RRSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRODSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$NEARODVA on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$NEAROSVA on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$NEO25 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$NEURO_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$NPC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OCT_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OCT_values might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODAC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODACD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODADD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODAXIALLENGTH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODAXIS on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODCMT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODCOINS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODCOLOR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODCONJ might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODCORNEA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODCUP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODCYL on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODDISC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODECL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODGONIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODHBASE on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODHERTEL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODHPD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODIOP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODIOPTARGET might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODIOPTARGETS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODIOPTARGET_values might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODIRIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODK1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODK2 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODK2AXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODKTHICKNESS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODLENS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODLT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODMACULA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODMIDADD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODMPDD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODMPDN on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODNPA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODPERIPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODREDDESAT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODSCHIRMER1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODSCHIRMER2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODSLABOFF on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODSPH on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODTBUT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODVA on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODVBASE on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODVERTEXDIST on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODVESSELS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODVITREOUS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODVPD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODW2W might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OD_methods might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OD_time_values might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OD_values might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSAC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSACD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSADD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSAXIALLENGTH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSAXIS on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSCMT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSCOINS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSCOLOR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSCONJ might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSCORNEA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSCUP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSCYL on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSDISC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSECL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSGONIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSHBASE on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSHERTEL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSHPD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSIOPTARGET might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSIOPTARGETS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSIOPTARGET_values might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSIRIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSK1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSK2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSK2AXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSKTHICKNESS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSLENS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSLT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSMACULA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSMIDADD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSMPDD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSMPDN on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSNPA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSPERIPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSREDDESAT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSSCHIRMER1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSSCHIRMER2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSSLABOFF on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSSPH on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSTBUT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSVA on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSVBASE on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSVERTEXDIST on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSVESSELS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSVITREOUS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSVPD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSW2W might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OS_methods might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OS_time_values might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OS_values might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$PAMODBA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$PAMODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$PAMOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$PHODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$PHOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$PMFSH on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RADNEXA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RBROW might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RCAROTID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RCNV might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RCNVII might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RETINA_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RLF might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RLL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RMCT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RMRD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RTEMPART might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RUL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RVFISSURE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RX_TYPE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RX_TYPE on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 5 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$STEREOPSIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$TROPICAMIDE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$VABINOC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$VERTFUSAMPS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$VF_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$VF_values might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$VISITS_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$action might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$all might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$categories might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$children_names might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$clinical_terms might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$code might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$code_found in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$count might not be defined\.$#' - identifier: variable.undefined - count: 16 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$current_OCT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$current_VF might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$display_Add might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$display_PMSFH might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$encounter_date on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$fullscreen on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$gonios might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$here might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$hideme might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$hit_RVO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$id on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$item on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$my_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$number_rows on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$output might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$parent_name in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$parent_name on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$pend might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$sub_term might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$time might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$time_OU might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$total_PMSFH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$zones might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Result of function display_VisualAcuities \(void\) is used\.$#' - identifier: function.void - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Result of function display_GlaucomaFlowSheet \(void\) is used\.$#' - identifier: function.void - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$encounter_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/taskman_functions.php - - message: '#^Variable \$form_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/taskman_functions.php - - message: '#^Variable \$sent_date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/taskman_functions.php - - message: '#^Undefined variable\: \$id$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Undefined variable\: \$table_name$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT10CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT10CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT10SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT10SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT11CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT11CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT11SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT11SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT1CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT1CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT1SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT1SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT2CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT2CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT2SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT2SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT3CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT3CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT3SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT3SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT4CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT4CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT4SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT4SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT5CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT5CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT5SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT5SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT6CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT6CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT6SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT6SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT7CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT7CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT7SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT7SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT8CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT8CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT8SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT8SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT9CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT9CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT9SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT9SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AMSLEROD might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AMSLEROS might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ANTSEG_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARODSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ASSOCIATED1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ASSOCIATED2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ASSOCIATED3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CACCDIST might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CACCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CC1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CC2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CC3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CHRONIC1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CHRONIC2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CHRONIC3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CONTEXT1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CONTEXT2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CONTEXT3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CONTRASTODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CONTRASTOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRCOMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRODSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLODBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLODDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLODSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLOSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLOSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLOSBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLOSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLOSDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLOSSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLOSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLSUPPLIEROD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLSUPPLIEROS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DACCDIST might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DACCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DIL_MEDS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DIMODPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DIMODPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DIMOSPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DIMOSPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DURATION1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DURATION2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DURATION3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$EXT_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$GLAREODVA might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$GLAREOSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$HERTELBASE might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$HPI1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$HPI2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$HPI3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$IOPTIME might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LADNEXA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LBROW might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LCAROTID might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LCNV might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LCNVII might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LIODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LIOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LLF might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LLL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LMCT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LMRD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LOCATION1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LOCATION2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LOCATION3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LTEMPART might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LUL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LVFISSURE might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MODIFY1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MODIFY2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MODIFY3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITYNORMAL might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_L0 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_LI might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_LL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_LLIO might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_LLSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_LR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_LRSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_LS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_R0 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RI might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RLIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RLSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RRIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RRSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRODSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$NEURO_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$NPC might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODAC might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODACD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODAPD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODAXIALLENGTH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODCMT might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODCOINS might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODCOLOR might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODCONJ might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODCORNEA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODCUP might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODDISC might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODECL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODGONIO might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODHERTEL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODIOPAP might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODIOPFTN might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODIOPTPN might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODIRIS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODK1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODK2 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODK2AXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODKTHICKNESS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODLENS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODLT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODMACULA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODNEARVA_1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODNPA might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODNPC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODPERIPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODPUPILREACTIVITY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODREDDESAT might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODSCHIRMER1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODSCHIRMER2 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODTBUT might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODVA_1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODVESSELS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODVF1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODVF2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODVF3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODVF4 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODVITREOUS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODW2W might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSAC might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSACD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSAPD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSAXIALLENGTH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSCMT might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSCOINS might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSCOLOR might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSCONJ might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSCORNEA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSCUP might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSDISC might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSECL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSGONIO might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSHERTEL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSIOPAP might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSIOPFTN might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSIOPTPN might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSIRIS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSK1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSK2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSK2AXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSKTHICKNESS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSLENS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSLT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSMACULA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSNEARVA_1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSNPA might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSNPC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSPERIPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSPUPILREACTIVITY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSREDDESAT might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSSCHIRMER1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSSCHIRMER2 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSTBUT might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSVA_1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSVESSELS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSVF1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSVF2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSVF3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSVF4 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSVITREOUS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSW2W might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$PAMODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$PAMOSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$PHODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$PHOSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$PLAN_results in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$PUPIL_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$PUPIL_NORMAL might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$QUALITY1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$QUALITY2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$QUALITY3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RADNEXA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RBROW might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RCAROTID might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RCNV might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RCNVII might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RETINA_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RLF might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RLL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RMCT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RMRD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RTEMPART might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RUL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RVFISSURE might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RX_TYPE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$SCNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$SCNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$SCODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$SCOSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$SEVERITY1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$SEVERITY2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$SEVERITY3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$STEREOPSIS might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$TIMING1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$TIMING2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$TIMING3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$VERTFUSAMPS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$bad on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$display_Add might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$encounter_date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$pend might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DOCS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$N might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$PMSFH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$category_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$dups might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$form_encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$form_injury_part might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$form_injury_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$form_return might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$ndc_info might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$new_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$printable might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$text_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$visit_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/eye_mag/taskman.php - - message: '#^Variable \$ACT might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT10CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT10CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT10SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT10SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT11CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT11CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT11SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT11SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT1CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT1CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT1SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT1SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT2CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT2CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT2SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT2SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT3CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT3CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT3SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT3SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT4CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT4CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT4SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT4SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT5CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT5CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT5SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT5SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT6CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT6CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT6SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT6SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT7CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT7CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT7SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT7SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT8CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT8CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT8SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT8SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT9CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT9CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT9SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT9SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AMSLEROD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AMSLEROS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ANTSEG_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARODSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ASSOCIATED1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ASSOCIATED2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ASSOCIATED3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ATROPINE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$BALANCED might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$BINOCVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CACCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CACCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CC1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CC2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CC3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CHRONIC1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CHRONIC2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CHRONIC3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CONTEXT1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CONTEXT2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CONTEXT3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CRCOMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CRODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CRODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CRODSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CRODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLBRAND_list_OD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLBRAND_list_OS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLODBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLODDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLODSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLOSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLOSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLOSBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLOSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLOSDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLOSSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLOSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLSUPPLIEROD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLSUPPLIEROS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTL_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CYCLOGYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CYCLOMYDRIL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DACCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DACCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DIL_MEDS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DIL_RISKS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DIMODPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DIMODPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DIMOSPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DIMOSPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DURATION1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DURATION2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DURATION3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$EXT_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$GLAREODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$GLAREOSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$HERTELBASE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$HPI1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$HPI2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$HPI3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$IMP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$IOPTIME might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LADNEXA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LBROW might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LCAROTID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LCNV might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LCNVII might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LIODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LIOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LLF might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LLL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LMCT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LMRD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LOCATION1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LOCATION2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LOCATION3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LOCKED might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LOCKED on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LOCKEDBY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LOCKEDBY on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LTEMPART might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LUL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LVFISSURE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MODIFY1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MODIFY2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MODIFY3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITYNORMAL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LI might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LL might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LLIO might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LLSO might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LR might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LRIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LRSO might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RI might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RL might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RLIO might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RLSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RR might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RRIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RRSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRODSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$NEO25 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$NEURO_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$NPC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODAC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODACD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODAPD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODAXIALLENGTH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODCMT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODCOINS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODCOLOR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODCONJ might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODCORNEA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODCUP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODDISC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODGONIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODHERTEL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODIOPAP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODIOPFTN might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODIOPPOST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODIOPTPN might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODIRIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODK1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODK2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODK2AXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODKTHICKNESS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODLENS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODLT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODMACULA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODNPA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODPERIPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODPUPILREACTIVITY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODREDDESAT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODSCHIRMER1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODSCHIRMER2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODTBUT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODVESSELS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODVF1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODVF2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODVF3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODVF4 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODVITREOUS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODW2W might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSAC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSACD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSAPD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSAXIALLENGTH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSCMT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSCOINS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSCOLOR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSCONJ might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSCORNEA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSCUP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSDISC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSGONIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSHERTEL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSIOPAP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSIOPFTN might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSIOPPOST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSIOPTPN might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSIRIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSK1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSK2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSK2AXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSKTHICKNESS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSLENS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSLT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSMACULA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSNPA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSPERIPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSPUPILREACTIVITY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSREDDESAT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSSCHIRMER1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSSCHIRMER2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSTBUT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSVESSELS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSVF1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSVF2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSVF3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSVF4 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSVITREOUS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSW2W might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$PAMODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$PAMOSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$PHODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$PHOSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$PUPIL_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$PUPIL_NORMAL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$QUALITY1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$QUALITY2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$QUALITY3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RADNEXA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RBROW might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RCAROTID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RCNV might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RCNVII might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RETINA_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RLF might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RLL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RMCT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RMRD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RTEMPART might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RUL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RVFISSURE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$SCNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$SCNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$SCODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$SCOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$SEVERITY1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$SEVERITY2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$SEVERITY3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$STEREOPSIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$TIMING1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$TIMING2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$TIMING3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$TROPICAMIDE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$VERTFUSAMPS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$WETTYPE might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$alert might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$confused might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 28 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$encounter_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$found on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$oriented might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$provider_id might not be defined\.$#' - identifier: variable.undefined - count: 12 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$setting_SDRETINA on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$uniqueID on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/code_choice/initialize_code_choice.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/contraception_products/initialize_contraception_products.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/contraception_products/initialize_contraception_products.php - - message: '#^Variable \$cleave_opt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$fee in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$ndc_applies might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$revenue_code might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$entry might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/code_check.php - - message: '#^Variable \$database might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$issues might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$json_diags might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$json_procs might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$req_encounter might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$req_pid might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$task might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_classes.php - - message: '#^Variable \$billing_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php - - message: '#^Variable \$database might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php - - message: '#^Variable \$json_diags might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php - - message: '#^Variable \$req_encounter might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php - - message: '#^Variable \$req_pid might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php - - message: '#^Variable \$task might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/review/fee_sheet_queries.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_search_queries.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/initialize_review.php - - message: '#^Variable \$isBilled might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/initialize_review.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/initialize_review.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/fee_sheet/review/initialize_review.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/views/review.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/functional_cognitive_status/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/functional_cognitive_status/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/functional_cognitive_status/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/functional_cognitive_status/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/functional_cognitive_status/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/gad7/gad7.inc.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_default might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_extremely might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_form_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_form_title might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_more might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_nearly might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_nosave_confirm might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_nosave_exit might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_not might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_q8 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_q8_2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_several might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_somewhat might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_very might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$data might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/report.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/gad7/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/gad7/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_afraid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_annoyed might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_control_worry might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_default might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_extremely might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_form_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_form_title might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_more might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_nearly might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_nervous might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_nosave_confirm might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_nosave_exit might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_not might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_q8 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_q8_2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_relax might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_restless might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_several might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_somewhat might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_very might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_worry might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/group_attendance/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/group_attendance/new.php - - message: '#^Variable \$therapy_group might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/group_attendance/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/group_attendance/save.php - - message: '#^Variable \$therapy_group might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/group_attendance/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/group_attendance/save.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/misc_billing_options/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/misc_billing_options/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/misc_billing_options/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/misc_billing_options/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/misc_billing_options/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/misc_billing_options/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/misc_billing_options/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/misc_billing_options/save.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/misc_billing_options/save.php - - message: '#^Variable \$disabled might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$posCode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 14 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$therapyGroupCategories might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$therapy_group might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$viewmode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/newGroupEncounter/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/view.php - - message: '#^Variable \$body_javascript on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php - - message: '#^Variable \$override in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php - - message: '#^Variable \$rootdir on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php - - message: '#^Variable \$userauthorized on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/newpatient/common.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newpatient/common.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/newpatient/common.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newpatient/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/newpatient/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/newpatient/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/newpatient/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/newpatient/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newpatient/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/note/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/note/new.php - - message: '#^Variable \$obj might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/note/print.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/note/print.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/note/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/note/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/note/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/note/save.php - - message: '#^Variable \$obj might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/note/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/note/view.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/note/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_default might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_extremely might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_form_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_form_title might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_more might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_nearly might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_nosave_confirm might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_not might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_q10 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_q10_2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_several might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_somewhat might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_very might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$viewmode might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/phq9/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/phq9/save.php - - message: '#^Variable \$issue might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/physical_exam/edit_diagnoses.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/physical_exam/new.php - - message: '#^Variable \$pelines might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/physical_exam/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/physical_exam/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/physical_exam/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/physical_exam/new.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/physical_exam/new.php - - message: '#^Constructor of class FormPriorAuth has an unused parameter \$_prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../interface/forms/prior_auth/FormPriorAuth.class.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/prior_auth/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/prior_auth/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/prior_auth/view.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/procedure_order/common.php - - message: '#^Variable \$isDorn might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/procedure_order/common.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../interface/forms/procedure_order/common.php - - message: '#^Variable \$ppid on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/procedure_order/common.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/procedure_order/common.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/procedure_order/common.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/procedure_order/common.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/procedure_order/delete.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/procedure_order/delete.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/procedure_order/delete.php - - message: '#^Variable \$i might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/procedure_order/templates/procedure_reason_row.php - - message: '#^Variable \$reasonCodeStatii might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/procedure_order/templates/procedure_reason_row.php - - message: '#^Variable \$do_warning might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php - - message: '#^Variable \$mode might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/questionnaire_assessments/save.php - - message: '#^Variable \$formid in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/forms/questionnaire_assessments/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/questionnaire_assessments/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/questionnaire_assessments/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/questionnaire_assessments/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/requisition/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/reviewofs/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/reviewofs/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/reviewofs/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/reviewofs/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/reviewofs/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/reviewofs/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/reviewofs/view.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/reviewofs/view.php - - message: '#^Constructor of class FormROS has an unused parameter \$_prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../interface/forms/ros/FormROS.class.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ros/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ros/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ros/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/sdoh/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/sdoh/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/sdoh/save.php - - message: '#^Variable \$formid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/sdoh/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/sdoh/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/sdoh/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/sdoh/save.php - - message: '#^Constructor of class FormSOAP has an unused parameter \$_prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../interface/forms/soap/FormSOAP.class.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/soap/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/soap/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/soap/view.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/create.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/create.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/track_anything/create.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/track_anything/create.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/track_anything/create.php - - message: '#^Variable \$fromencounter might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/track_anything/history.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/history.php - - message: '#^Variable \$row might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/history.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/history.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/track_anything/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/track_anything/new.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/new.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/new.php - - message: '#^Variable \$showbutton might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/track_anything/report.php - - message: '#^Variable \$disabled might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/transfer_summary/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/transfer_summary/new.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/transfer_summary/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/transfer_summary/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/transfer_summary/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/transfer_summary/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/transfer_summary/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/transfer_summary/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/transfer_summary/save.php - - message: '#^Variable \$disabled might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/treatment_plan/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/treatment_plan/new.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/treatment_plan/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/treatment_plan/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/treatment_plan/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/treatment_plan/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/treatment_plan/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/treatment_plan/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/treatment_plan/save.php - - message: '#^Variable \$results might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/C_FormVitals.class.php - - message: '#^Variable \$HC_delta_x might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$HC_delta_y might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$HC_dot_x might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$HC_dot_y might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$HT_delta_x might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$HT_x might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$HToffset might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$WT_delta_y might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$WT_y might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$WToffset might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$age might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$age_in_months might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$ageinYMD might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$bmi might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$bmi_delta_x might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$bmi_delta_y might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$bmi_dot_x might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$bmi_dot_y might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$chart might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$chartCss1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$chartCss2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$datatable2_bmi_offset might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$datatable2_hc_offset might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$datatable_bmi_offset might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$datatable_hc_offset might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$dob might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$pid in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/vitals/new.php - - message: '#^Variable \$bps might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/vitals/report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/vitals/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/vitals/view.php - - message: '#^Variable \$inDir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms_admin/forms_admin.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms_admin/forms_admin.php - - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/globals.php - - message: '#^Variable \$portal_temp_css_theme_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/globals.php - - message: '#^Variable \$temp_css_theme_name might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/globals.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/globals.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/help_modal.php - - message: '#^Variable \$langModuleFlag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/csv/load_csv_file.php - - message: '#^Variable \$create might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/csv/translation_utilities.php - - message: '#^Variable \$langModuleFlag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/csv/validate_csv.php - - message: '#^Variable \$langModuleFlag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/lang_constant.php - - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/lang_definition.php - - message: '#^Variable \$go might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/lang_definition.php - - message: '#^Variable \$langModuleFlag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/lang_definition.php - - message: '#^Variable \$langModuleFlag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/lang_language.php - - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/lang_manage.php - - message: '#^Variable \$langModuleFlag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/lang_manage.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/language.php - - message: '#^Variable \$openemr_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/login/login.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/login_screen.php - - message: '#^Variable \$getevent might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/logview/logview.php - - message: '#^Variable \$openemr_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/about_page.php - - message: '#^Variable \$authorize might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$groupname might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$result1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$result2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$result3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$result4 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$tmore might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$authorize might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/authorizations/authorizations_full.php - - message: '#^Variable \$groupname might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/authorizations/authorizations_full.php - - message: '#^Variable \$result3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations_full.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations_full.php - - message: '#^Variable \$tback might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations_full.php - - message: '#^Function gzopen64 not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/main/backup.php - - message: '#^Variable \$UOR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/backup.php - - message: '#^Variable \$datatypes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/backup.php - - message: '#^Variable \$sources might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/backup.php - - message: '#^Variable \$sqlconf might not be defined\.$#' - identifier: variable.undefined - count: 46 - path: ../interface/main/backup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/backup.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/backup.php - - message: '#^Variable \$zipname might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/backup.php - - message: '#^Variable \$sqlconf might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/main/backuplog.php - - message: '#^Variable \$duration might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$e2f might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$endtime might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$event_date might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$exdates in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$locationspec might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$multiple_value might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$my_recurrtype might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$new_eid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$noRecurrspec might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$providers_current might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$recurrence_end_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$recurrspec might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$starttime might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$isProv might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/find_appt_popup.php - - message: '#^Variable \$providerid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/find_appt_popup.php - - message: '#^Variable \$slots might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/find_appt_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/find_appt_popup.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/find_group_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/find_group_popup.php - - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/main/calendar/find_patient_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/find_patient_popup.php - - message: '#^Path in require\(\) "config\.php" is not a file or it does not exist\.$#' - identifier: require.fileNotFound - count: 1 - path: ../interface/main/calendar/includes/pnAPI.php - - message: '#^Path in require\(\) "includes/pnHTML\.php" is not a file or it does not exist\.$#' - identifier: require.fileNotFound - count: 1 - path: ../interface/main/calendar/includes/pnAPI.php - - message: '#^Path in require\(\) "includes/pnMod\.php" is not a file or it does not exist\.$#' - identifier: require.fileNotFound - count: 1 - path: ../interface/main/calendar/includes/pnAPI.php - - message: '#^Path in require\(\) "pntables\.php" is not a file or it does not exist\.$#' - identifier: require.fileNotFound - count: 1 - path: ../interface/main/calendar/includes/pnAPI.php - - message: '#^Variable \$_GLOBALS might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/calendar/includes/pnAPI.php - - message: '#^Method pnHTML\:\:EndPage\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:FormEnd\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:FormHidden\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:FormSelectMultiple\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:FormStart\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:FormSubmit\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:Linebreak\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:StartPage\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:Text\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Path in include\(\) "footer\.php" is not a file or it does not exist\.$#' - identifier: include.fileNotFound - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Path in include\(\) "header\.php" is not a file or it does not exist\.$#' - identifier: include.fileNotFound - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/index.php - - message: '#^Constant _CALAPR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALAUG not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALDEC not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALFEB not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALJAN not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALJUL not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALJUN not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALMAR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALMAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALNOV not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALOCT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALSEP not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _PC_OL_CLOSE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Variable \$pcDir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _SETTING_DATE_FORMAT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _SETTING_DAY_HICOLOR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _SETTING_DISPLAY_TOPICS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _SETTING_TEMPLATE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _SETTING_TIME_24HOUR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _SETTING_USE_INT_DATES not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _SETTING_USE_POPUPS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Variable \$template_view in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _PC_LOCALE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_format.php - - message: '#^Constant _SETTING_DATE_FORMAT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_format.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_format.php - - message: '#^Constant _CAL_DAYVIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Constant _CAL_MONTHVIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Constant _CAL_WEEKVIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Constant _CAL_YEARVIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Constant _PC_JUMP_MENU_SUBMIT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Variable \$d in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Variable \$m in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Variable \$viewtype in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Variable \$y in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Constant _PC_FILTER_CATEGORY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _PC_FILTER_TOPIC not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _PC_FILTER_USERS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _PC_FILTER_USERS_ALL not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _PC_TPL_VIEW_SUBMIT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _SETTING_DISPLAY_TOPICS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _SETTING_TEMPLATE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Variable \$catoptions might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Variable \$class might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Variable \$pcTemplate in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Variable \$useroptions might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Variable \$viewtype in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_form_nav_close.php - - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_form_nav_open.php - - message: '#^Constant _SETTING_USE_POPUPS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_popup.php - - message: '#^Variable \$sticky might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_popup.php - - message: '#^Variable \$text might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_popup.php - - message: '#^Variable \$function might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php - - message: '#^Variable \$order might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php - - message: '#^Variable \$sort might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php - - message: '#^Variable \$value might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php - - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php - - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' - identifier: constant.notFound - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php - - message: '#^Variable \$link might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php - - message: '#^Variable \$localpath might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php - - message: '#^Variable \$setdeftime might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php - - message: '#^Constant _PC_TPL_VIEW_SUBMIT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Constant _SETTING_TEMPLATE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Variable \$d in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Variable \$m in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Variable \$pcTemplate in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Variable \$viewtype in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Variable \$y in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Constant _PC_LOCALE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/modifier.pc_date_format.php - - message: '#^Constant _SETTING_DATE_FORMAT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/modifier.pc_date_format.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/modifier.pc_date_format.php - - message: '#^Constant _ACO not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _EDIT_PC_CONFIG_CATDETAILS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _EDIT_PC_CONFIG_CATEGORIES not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_ACTIVE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_ADD_CAT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_ALL_DAY_CAT_NO not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_ALL_DAY_CAT_TITLE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_ALL_DAY_CAT_YES not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_ARE_YOU_SURE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CACHE_CLEARED not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CATS_CONFIRM not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_CLINIC not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_COLOR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_CONSTANT_ID not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_DELETE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_DESC not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_DESC_XL not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_DUR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_NAME not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_NAME_XL not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_PATIENT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_PROVIDER not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_THERAPY_GROUP not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_TYPE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CLEAR_CACHE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_COLOR_PICK_TITLE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_DELETE_CATS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_DURATION_HOUR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_DURATION_MIN not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_END_DATE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_1ST not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_2ND not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_3RD not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_4TH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_DAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_FOURTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_FRI not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_LAST not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_MON not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_MONTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_OTHER not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_SAT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_SUN not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_THIRD not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_THU not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_TUE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_WED not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_WEEK not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_WORKDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_YEAR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_MODIFY_CATS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_MONTHS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_NEW_CAT_TITLE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_NEW_CAT_TITLE_S not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_NO_END not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_NO_REPEAT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_OF_EVERY_2MONTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_OF_EVERY_3MONTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_OF_EVERY_4MONTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_OF_EVERY_6MONTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_OF_EVERY_MONTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_OF_EVERY_YEAR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_OF_THE_MONTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_REPEAT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_REPEATING_HEADER not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_REPEAT_ON not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_REP_CAT_TITLE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_REP_CAT_TITLE_S not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_SEQ not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_TEST_SYSTEM not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Undefined variable\: \$msg$#' - identifier: variable.undefined - count: 7 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Variable \$dels might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Variable \$msg on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Variable \$new_recurrfreq on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Variable \$newnam in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Variable \$aco might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$active might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$color might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$constantid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$desc might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$duration might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$end_all_day might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$end_date_flag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$end_date_freq might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$end_date_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$limitid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$recurrfreq might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$repeat might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$sequence might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$spec might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$value_cat_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$cDay might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pntemplates/default/views/monthSelector.php - - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Constant _SETTING_DISPLAY_TOPICS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Constant _SETTING_TEMPLATE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Constant _SETTING_USE_INT_DATES not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Undefined variable\: \$day$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Undefined variable\: \$month$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Undefined variable\: \$sqlKeywords$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$ProviderID in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$day on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$end in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$month on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$pc_category in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$pc_facility in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$pc_topic in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$s_category in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$s_topic in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$sqlKeywords in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$start in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$submit in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 3 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$tmpDate in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$year on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Constant _CALAPR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALAUG not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALDEC not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALFEB not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALFRIDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALFRIDAYSHORT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALJAN not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALJUL not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALJUN not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALMAR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALMAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALMONDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALMONDAYSHORT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALNOV not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALOCT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALSATURDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALSATURDAYSHORT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALSEP not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALSUNDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALSUNDAYSHORT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALTHURSDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALTHURSDAYSHORT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALTUESDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALTUESDAYSHORT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALWEDNESDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALWEDNESDAYSHORT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _SETTING_FIRST_DAY_WEEK not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _SETTING_TEMPLATE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _USER_BUSY_MESSAGE not found\.$#' - identifier: constant.notFound - count: 4 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _USER_BUSY_TITLE not found\.$#' - identifier: constant.notFound - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$cacheid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$category in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$ending_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$etime might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$event_status might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$nuke_users might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$patient_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$pc_username in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$provider_id might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$s_keywords in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$starting_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$stime might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$template_view in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$topic in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$userid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$viewtype might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$pnconfig might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/pntables.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/dated_reminders/dated_reminders.php - - message: '#^Variable \$ReminderSent might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/dated_reminders/dated_reminders_add.php - - message: '#^Variable \$patientID in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/dated_reminders/dated_reminders_add.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/dated_reminders/dated_reminders_add.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/dated_reminders/dated_reminders_add.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/dated_reminders/dated_reminders_log.php - - message: '#^Variable \$dates might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/display_documents.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/display_documents.php - - message: '#^Variable \$result in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/finder/document_select.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/finder/dynamic_finder.php - - message: '#^Variable \$aColumns might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/main/finder/dynamic_finder_ajax.php - - message: '#^Variable \$results might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/finder/multi_patients_finder.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/finder/multi_patients_finder.php - - message: '#^Variable \$results might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/finder/multi_patients_finder_ajax.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/finder/multi_patients_finder_ajax.php - - message: '#^Variable \$add_days might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$extracols might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$itemized_test_id might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$numerator_label might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$pass_id might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$report_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$where in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/ippf_export.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/main_screen.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/lab_results_messages.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/messages/lab_results_messages.php - - message: '#^Variable \$where might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/lab_results_messages.php - - message: '#^Variable \$background might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$body might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$cursor might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$message_legend might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$reply_to in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$title in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$prov_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/print_postcards.php - - message: '#^Function updateMessage not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/main/messages/save.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/save.php - - message: '#^Variable \$facilities might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/save.php - - message: '#^Variable \$providers might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/save.php - - message: '#^Variable \$results might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/messages/save.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/messages/save.php - - message: '#^Variable \$enc_list in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/messages/templates/linked_documents.php - - message: '#^Variable \$row might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/templates/linked_documents.php - - message: '#^Variable \$documentId might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/messages/trusted-messages-ajax.php - - message: '#^Variable \$error might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/messages/trusted-messages-ajax.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/messages/trusted-messages-ajax.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/messages/trusted-messages-ajax.php - - message: '#^Variable \$recipient might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/messages/trusted-messages-ajax.php - - message: '#^Variable \$requested_by might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/messages/trusted-messages-ajax.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/trusted-messages.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/trusted-messages.php - - message: '#^Variable \$tmore might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/onotes/office_comments.php - - message: '#^Class ESign\\Api referenced with incorrect case\: Esign\\Api\.$#' - identifier: class.nameCase - count: 2 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$any_search_class might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$dispatcher might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$fileroot might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$openemr_name might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$search_any_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$search_globals_class might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$classes on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/main/tabs/templates/patient_data_template.php - - message: '#^Variable \$classLoader might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/openemr.bootstrap.php - - message: '#^Variable \$eventDispatcher might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/openemr.bootstrap.php - - message: '#^Class OpenEMR\\Modules\\ClaimRevConnector\\CustomSkeletonFHIRResourceService not found\.$#' - identifier: class.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/Bootstrap.php - - message: '#^Access to an undefined property OpenEMR\\Modules\\ClaimRevConnector\\ConnectivityInfo\:\:\$token\.$#' - identifier: property.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/ConnectivityInfo.php - - message: '#^Variable \$revenueTools might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/EligibilityObjectCreator.php - - message: '#^Access to undefined constant OpenEMR\\Modules\\ClaimRevConnector\\GlobalConfig\:\:CONFIG_OPTION_ENCRYPTED\.$#' - identifier: classConstant.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/GlobalConfig.php - - message: '#^Access to undefined constant OpenEMR\\Modules\\ClaimRevConnector\\GlobalConfig\:\:CONFIG_OPTION_TEXT\.$#' - identifier: classConstant.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/GlobalConfig.php - - message: '#^Variable \$benefit might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/additional_info.php - - message: '#^Variable \$benefits might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/benefit.php - - message: '#^Variable \$benefit might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/date_information.php - - message: '#^Variable \$eligibilityData might not be defined\.$#' - identifier: variable.undefined - count: 20 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/deductibles.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/eligibility.php - - message: '#^Variable \$benefit might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/identifier_info.php - - message: '#^Variable \$eligibilityData might not be defined\.$#' - identifier: variable.undefined - count: 22 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/medicare_info.php - - message: '#^Variable \$benefit might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/messages.php - - message: '#^Variable \$tab might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/navbar.php - - message: '#^Variable \$benefit might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/procedure_info.php - - message: '#^Variable \$eligibilityData might not be defined\.$#' - identifier: variable.undefined - count: 69 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/quick_info.php - - message: '#^Variable \$receiver might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/receiver.php - - message: '#^Variable \$benefit might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/related_entity.php - - message: '#^Variable \$benefit might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/service_delivery.php - - message: '#^Variable \$source might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/source.php - - message: '#^Variable \$subscriberPatient might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/subscriber_patient.php - - message: '#^Variable \$data might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/validation.php - - message: '#^Variable \$eligibilityData might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/validation.php - - message: '#^Variable \$classLoader might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/openemr.bootstrap.php - - message: '#^Variable \$eventDispatcher might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/openemr.bootstrap.php - - message: '#^Variable \$_GET on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/public/index-portal.php - - message: '#^Variable \$_REQUEST on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/public/index.php - - message: '#^Variable \$user might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/src/Controller/TeleHealthVideoRegistrationController.php - - message: '#^Variable \$userSaveRecord might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/src/Services/TeleHealthRemoteRegistrationService.php - - message: '#^Constructor of class Comlink\\OpenEMR\\Modules\\TeleHealthModule\\TelehealthGlobalConfig has an unused parameter \$moduleDirectoryName\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/src/TelehealthGlobalConfig.php - - message: '#^Variable \$classLoader might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/openemr.bootstrap.php - - message: '#^Variable \$eventDispatcher might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/openemr.bootstrap.php - - message: '#^Variable \$datas might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/public/lab_setup.php - - message: '#^Variable \$data might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/public/primary_config_edit.php - - message: '#^Variable \$npi might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/public/primary_config_edit.php - - message: '#^Undefined variable\: \$$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/AddressBookAddEdit.php - - message: '#^Class OpenEMR\\Modules\\Dorn\\CustomSkeletonFHIRResourceService not found\.$#' - identifier: class.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/Bootstrap.php - - message: '#^Variable \$D might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-dorn/src/DornGenHl7Order.php - - message: '#^Variable \$segment might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/DornGenHl7Order.php - - message: '#^Variable \$segment might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-dorn/src/GenHl7OrderBase.php - - message: '#^Access to undefined constant OpenEMR\\Modules\\Dorn\\GlobalConfig\:\:CONFIG_OPTION_ENCRYPTED\.$#' - identifier: classConstant.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/GlobalConfig.php - - message: '#^Access to undefined constant OpenEMR\\Modules\\Dorn\\GlobalConfig\:\:CONFIG_OPTION_TEXT\.$#' - identifier: classConstant.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/GlobalConfig.php - - message: '#^Call to static method instance\(\) on an unknown class OpenEMR\\Modules\\Dorn\\EventAuditLogger\.$#' - identifier: class.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/ReceiveHl7Results.php - - message: '#^Undefined variable\: \$arep$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-dorn/src/ReceiveHl7Results.php - - message: '#^Undefined variable\: \$log$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/ReceiveHl7Results.php - - message: '#^Undefined variable\: \$prpath$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/ReceiveHl7Results.php - - message: '#^Property OpenEMR\\Modules\\Dorn\\models\\OrderStatusViewModel\:\:\$createdDateTimeUtc has unknown class OpenEMR\\Modules\\Dorn\\models\\DateTime as its type\.$#' - identifier: class.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/models/OrderStatusViewModel.php - - message: '#^Variable \$tab might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/modules/custom_modules/oe-module-dorn/templates/navbar.php - - message: '#^Variable \$classLoader might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/openemr.bootstrap.php - - message: '#^Variable \$eventDispatcher might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/openemr.bootstrap.php - - message: '#^Variable \$taskId might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/public/index.php - - message: '#^Variable \$localColumnName in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Models/ExportState.php - - message: '#^Variable \$currentDocumentSize might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php - - message: '#^Variable \$job might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php - - message: '#^Variable \$pidSlice might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php - - message: '#^Variable \$tasks might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php - - message: '#^Variable \$file_mime on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php - - message: '#^Variable \$interface_pid on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php - - message: '#^Variable \$isEmail on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php - - message: '#^Variable \$isFax on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php - - message: '#^Variable \$isSMS on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php - - message: '#^Variable \$route on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/index.php - - message: '#^Variable \$args on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/library/rc_sms_notification.php - - message: '#^Variable \$cred might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/library/rc_sms_notification.php - - message: '#^Variable \$db_patient on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/library/rc_sms_notification.php - - message: '#^Variable \$selectedService might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/library/setup_services.php - - message: '#^Variable \$vendors on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/library/setup_services.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/library/utility.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-faxsms/library/utility.php - - message: '#^Variable \$tabTitle on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/messageUI.php - - message: '#^Variable \$classLoader might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/openemr.bootstrap.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/setup_rc.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/setup_voice.php - - message: '#^Caught class OpenEMR\\Modules\\FaxSMS\\Controller\\Exception not found\.$#' - identifier: class.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php - - message: '#^Constructor of class OpenEMR\\Modules\\FaxSMS\\Controller\\AppDispatch has an unused parameter \$type\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php - - message: '#^Variable \$route on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php - - message: '#^Variable \$setup in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php - - message: '#^Access to an undefined property OpenEMR\\Modules\\FaxSMS\\Controller\\EmailClient\:\:\$appKey\.$#' - identifier: property.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/EmailClient.php - - message: '#^Access to an undefined property OpenEMR\\Modules\\FaxSMS\\Controller\\EmailClient\:\:\$appSecret\.$#' - identifier: property.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/EmailClient.php - - message: '#^Access to an undefined property OpenEMR\\Modules\\FaxSMS\\Controller\\EmailClient\:\:\$sid\.$#' - identifier: property.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/EmailClient.php - - message: '#^Variable \$status might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/EtherFaxActions.php - - message: '#^Variable \$content in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/RCFaxClient.php - - message: '#^Variable \$pname might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/RCFaxClient.php - - message: '#^Variable \$response might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/RCFaxClient.php - - message: '#^Method OpenEMR\\Modules\\FaxSMS\\Controller\\TwilioSMSClient\:\:_getPending\(\) invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/TwilioSMSClient.php - - message: '#^Variable \$responseMsgs in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/TwilioSMSClient.php - - message: '#^Access to an undefined static property OpenEMR\\Modules\\FaxSMS\\Controller\\VoiceClient\:\:\$authAttemptCount\.$#' - identifier: staticProperty.notFound - count: 2 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/VoiceClient.php - - message: '#^Access to an undefined static property OpenEMR\\Modules\\FaxSMS\\Controller\\VoiceClient\:\:\$lastAuthAttempt\.$#' - identifier: staticProperty.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/VoiceClient.php - - message: '#^Variable \$tz in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/EtherFax/EtherFaxClient.php - - message: '#^Variable \$data on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Events/NotificationEventListener.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Events/NotificationEventListener.php - - message: '#^Variable \$user on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Events/NotificationEventListener.php - - message: '#^Variable \$classLoader might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/openemr.bootstrap.php - - message: '#^Variable \$eventDispatcher might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/openemr.bootstrap.php - - message: '#^Variable \$id in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Bootstrap.php - - message: '#^Variable \$is_saved might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/LogImportBuild.php - - message: '#^Variable \$line in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/LogImportBuild.php - - message: '#^Variable \$sub on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/LogImportBuild.php - - message: '#^Variable \$newKey in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/WenoValidate.php - - message: '#^Variable \$backGroundTask on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/templates/download_log_viewer.php - - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/templates/download_log_viewer.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-weno/templates/indexrx.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/templates/indexrx.php - - message: '#^Variable \$vendors on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/templates/weno_setup.php - - message: '#^Variable \$usersData might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/templates/weno_users.php - - message: '#^Variable \$array_active_modules might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Acl/src/Acl/Controller/AclController.php - - message: '#^Class OpenEMR\\Core\\Kernel referenced with incorrect case\: OpenEmr\\Core\\Kernel\.$#' - identifier: class.nameCase - count: 1 - path: ../interface/modules/zend_modules/module/Application/config/module.config.php - - message: '#^Call to an undefined method Application\\Controller\\IndexController\:\:CommonPlugin\(\)\.$#' - identifier: method.notFound - count: 1 - path: ../interface/modules/zend_modules/module/Application/src/Application/Controller/IndexController.php - - message: '#^Call to an undefined method Application\\Controller\\SendtoController\:\:escapeHtml\(\)\.$#' - identifier: method.notFound - count: 2 - path: ../interface/modules/zend_modules/module/Application/src/Application/Controller/SendtoController.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php - - message: '#^Variable \$rowCount might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php - - message: '#^Variable \$rows might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Application/src/Application/Plugin/CommonPlugin.php - - message: '#^Call to an undefined method Carecoordination\\Controller\\CarecoordinationController\:\:CommonPlugin\(\)\.$#' - identifier: method.notFound - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CarecoordinationController.php - - message: '#^Call to an undefined method Carecoordination\\Controller\\CarecoordinationController\:\:Documents\(\)\.$#' - identifier: method.notFound - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CarecoordinationController.php - - message: '#^Variable \$his_tob_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CarecoordinationController.php - - message: '#^Call to an undefined method Carecoordination\\Controller\\CcdController\:\:updateDocumentCategoryUsingCatname\(\)\.$#' - identifier: method.notFound - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CcdController.php - - message: '#^Undefined variable\: \$combination$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncounterccdadispatchController.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncounterccdadispatchController.php - - message: '#^Call to an undefined method Carecoordination\\Controller\\EncountermanagerController\:\:CommonPlugin\(\)\.$#' - identifier: method.notFound - count: 5 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncountermanagerController.php - - message: '#^Variable \$combination might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncountermanagerController.php - - message: '#^Constructor of class Carecoordination\\Form\\ModuleconfigForm has an unused parameter \$dbAdapter\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Form/ModuleconfigForm.php - - message: '#^Variable \$allergy_begdate_value might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Variable \$documentationOf might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Variable \$o_id might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Variable \$pid_exist on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Variable \$provider_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Variable \$res_cur might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Variable \$value might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Variable \$str might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdaGenerator.php - - message: '#^Variable \$str1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdaGenerator.php - - message: '#^Variable \$sortPreferences on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdaUserPreferencesTransformer.php - - message: '#^Function display_layout_rows_group_new not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$code_type on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$count might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$details in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$encounter in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$encounter_activity on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$encounter_diagnosis might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$formatted_date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$forms might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$getprovider in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$query might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$res_issues on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$row_patient_data might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$searchClause in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$start_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$time in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$tmp on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$trans_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$uuid on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$ccda_file might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php - - message: '#^Variable \$ccda_id might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php - - message: '#^Variable \$formatted_date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php - - message: '#^Variable \$res_cur might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php - - message: '#^Variable \$trans_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php - - message: '#^Access to an undefined property Carecoordination\\Model\\ModuleconfigTable\:\:\$applicationTable\.$#' - identifier: property.notFound - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/ModuleconfigTable.php - - message: '#^Class Ccr\\Model\\CcrTable constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../interface/modules/zend_modules/module/Ccr/config/module.config.php - - message: '#^Call to an undefined method Ccr\\Controller\\CcrController\:\:CommonPlugin\(\)\.$#' - identifier: method.notFound - count: 2 - path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Controller/CcrController.php - - message: '#^Variable \$active might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Model/CcrTable.php - - message: '#^Variable \$activity might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Model/CcrTable.php - - message: '#^Call to an undefined method Documents\\Controller\\DocumentsController\:\:Documents\(\)\.$#' - identifier: method.notFound - count: 2 - path: ../interface/modules/zend_modules/module/Documents/src/Documents/Controller/DocumentsController.php - - message: '#^Variable \$style might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Documents/src/Documents/Controller/DocumentsController.php - - message: '#^Call to an undefined method Immunization\\Controller\\ImmunizationController\:\:CommonPlugin\(\)\.$#' - identifier: method.notFound - count: 9 - path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Controller/ImmunizationController.php - - message: '#^Variable \$rows might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Controller/ImmunizationController.php - - message: '#^Constructor of class Immunization\\Form\\ImmunizationForm has an unused parameter \$name\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Form/ImmunizationForm.php - - message: '#^Variable \$res_cur might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php - - message: '#^Variable \$val might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php - - message: '#^Variable \$curr_html_tag might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php - - message: '#^Variable \$div on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php - - message: '#^Variable \$status might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php - - message: '#^Variable \$v_major might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php - - message: '#^Variable \$v_minor might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php - - message: '#^Variable \$v_patch might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php - - message: '#^Variable \$modArr might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTable.php - - message: '#^Variable \$ret_str might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTable.php - - message: '#^Variable \$aclSetupFlag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/PatientFilter/acl/acl_setup.php - - message: '#^Variable \$aclSetupFlag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/PatientFilter/acl/acl_upgrade.php - - message: '#^Variable \$drug_test_count might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/PatientFlowBoard/src/PatientFlowBoard/Listener/PatientFlowBoardEventsSubscriber.php - - message: '#^Variable \$p might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/PrescriptionTemplates/src/PrescriptionTemplates/Controller/PrescriptionTemplatesController.php - - message: '#^Call to an undefined method Syndromicsurveillance\\Controller\\SyndromicsurveillanceController\:\:CommonPlugin\(\)\.$#' - identifier: method.notFound - count: 3 - path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Controller/SyndromicsurveillanceController.php - - message: '#^Variable \$formatted_date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php - - message: '#^Variable \$res_cur might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php - - message: '#^Variable \$text might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php - - message: '#^Variable \$BS_COL_CLASS might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/new/new_comprehensive.php - - message: '#^Variable \$date_init might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/new/new_comprehensive.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/new/new_comprehensive.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/new/new_comprehensive_save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/new/new_comprehensive_save.php - - message: '#^Variable \$alertmsg might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/new/new_patient_save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/new/new_patient_save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/new/new_patient_save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/new/new_patient_save.php - - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/new/new_search_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/new/new_search_popup.php - - message: '#^Variable \$codes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/find_order_popup.php - - message: '#^Variable \$proctype_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/find_order_popup.php - - message: '#^Variable \$ptrow might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/orders/find_order_popup.php - - message: '#^Variable \$sub might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/find_order_popup.php - - message: '#^Variable \$testid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/find_order_popup.php - - message: '#^Variable \$transport might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/find_order_popup.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/find_order_popup.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/gen_hl7_order.inc.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/orders/list_reports.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/list_reports.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/orders/list_reports.php - - message: '#^Variable \$ptid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/orders/load_compendium.php - - message: '#^Variable \$insco in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/orders/order_manifest.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/orders/order_manifest.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/orders/orders_results.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/orders/orders_results.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/orders/patient_match_dialog.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/orders/pending_orders.php - - message: '#^Variable \$optionsStr on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/orders/procedure_provider_edit.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/procedure_provider_edit.php - - message: '#^Variable \$help_icon might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/procedure_provider_list.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/procedure_provider_list.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/procedure_stats.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/procedure_stats.php - - message: '#^Instantiated class QuestResultClient not found\.$#' - identifier: class.notFound - count: 1 - path: ../interface/orders/receive_hl7_results.inc.php - - message: '#^Undefined variable\: \$arep$#' - identifier: variable.undefined - count: 2 - path: ../interface/orders/receive_hl7_results.inc.php - - message: '#^Undefined variable\: \$patient_id$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/single_order_results.inc.php - - message: '#^Variable \$aNotes in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/orders/single_order_results.inc.php - - message: '#^Function cms_portal_call not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/orders/single_order_results.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/orders/single_order_results.php - - message: '#^Variable \$help_icon might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/types.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/types.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/types_edit.php - - message: '#^Variable \$title might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/types_edit.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/addr_label.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/barcode_label.php - - message: '#^Variable \$type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/barcode_label.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/download_template.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/download_template.php - - message: '#^Variable \$filename might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/download_template.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/download_template.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/education.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/education.php - - message: '#^Variable \$counter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/cash_receipt.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/cash_receipt.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/encounter/cash_receipt.php - - message: '#^Variable \$raw_encounter_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/cash_receipt.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/encounter/cash_receipt.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/coding.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/coding.php - - message: '#^Variable \$all might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/copay.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/copay.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/delete_form.php - - message: '#^Variable \$incdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/delete_form.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/delete_form.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/delete_form.php - - message: '#^Variable \$counter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/patient_file/encounter/diagnosis.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/patient_file/encounter/diagnosis.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis.php - - message: '#^Variable \$tback might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis.php - - message: '#^Variable \$tmore might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/diagnosis.php - - message: '#^Variable \$code might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$counter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$tback might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$text might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/encounter_bottom.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/encounter_top.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/encounter_top.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/encounter_top.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_dynamic.php - - message: '#^Variable \$code_external_tables might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$codetype might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$fe_array might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$from might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$iFilteredTotal might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$iTotal might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$include_inactive might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$sellist might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$source might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$where1 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_history.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/find_code_popup.php - - message: '#^Variable \$attendant_type might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 23 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$groupId might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 19 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$therapy_group might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/search_code.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/search_code.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/search_code.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/select_codes.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_codes.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/superbill_codes.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/superbill_codes.php - - message: '#^Variable \$tback might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_codes.php - - message: '#^Variable \$tmore might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_codes.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/superbill_codes.php - - message: '#^Variable \$code might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$code_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$code_type_name_external might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$filter_key might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$modifier might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$res might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$taxrates might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$incdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/trend_form.php - - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$cryptoGen might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$form_pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$payment_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$session_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$ccaudit might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/front_payment_cc.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/front_payment_cc.php - - message: '#^Variable \$response might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/front_payment_cc.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/history/encounters.php - - message: '#^Variable \$attendant_type might not be defined\.$#' - identifier: variable.undefined - count: 13 - path: ../interface/patient_file/history/encounters.php - - message: '#^Variable \$dres might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/history/encounters.php - - message: '#^Variable \$encounter_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/history/encounters.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 22 - path: ../interface/patient_file/history/encounters.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/history/encounters.php - - message: '#^Variable \$therapy_group might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/history/encounters.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/history/encounters_ajax.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/history/history.php - - message: '#^Variable \$list_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/history/history.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/history/history.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/history/history.php - - message: '#^Variable \$date_init might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/history/history_full.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/history/history_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/history/history_full.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/history/history_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/history/history_save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/history/history_save.php - - message: '#^Variable \$last might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/label.php - - message: '#^Variable \$pdf might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/label.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/label.php - - message: '#^Variable \$bodytext might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/patient_file/letter.php - - message: '#^Variable \$from_title on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/patient_file/letter.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/letter.php - - message: '#^Variable \$to_title on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/patient_file/letter.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/manage_dup_patients.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/merge_patients.php - - message: '#^Variable \$source on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/patient_file/merge_patients.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/merge_patients.php - - message: '#^Variable \$tables might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/merge_patients.php - - message: '#^Variable \$target on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/patient_file/merge_patients.php - - message: '#^Function generateCheckoutReceipt not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Function oeFormatMoney invoked with 3 parameters, 1\-2 required\.$#' - identifier: arguments.count - count: 5 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 2 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$contraception_billing_code might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$form_num_amount_columns might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$form_num_method_columns might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$form_num_ref_columns might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$form_num_type_columns might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$num_optional_columns might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$thisdate might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$amount might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/pos_checkout_normal.php - - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/patient_file/pos_checkout_normal.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/pos_checkout_normal.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/pos_checkout_normal.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/pos_checkout_normal.php - - message: '#^Path in include_once\(\) "\.\./\.\./custom/fee_sheet_codes\.php" is not a file or it does not exist\.$#' - identifier: includeOnce.fileNotFound - count: 1 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$pages might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$patdata might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/problem_encounter.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/problem_encounter.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/problem_encounter.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/reminder/active_reminder_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/reminder/active_reminder_popup.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/reminder/clinical_reminders.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/reminder/clinical_reminders.php - - message: '#^Variable \$rules_default might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/reminder/patient_reminders.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/reminder/patient_reminders.php - - message: '#^Caught class MpdfException not found\.$#' - identifier: class.notFound - count: 2 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Function cms_portal_call not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$from_file_tmp_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$insurance_data_array might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 23 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$prevIssueType might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$tback might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$tmp_files_remove might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/patient_report.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/report/patient_report.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/patient_file/report/patient_report.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/patient_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/report/patient_report.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/rules/patient_data.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/rules/patient_data.php - - message: '#^Variable \$amendment_desc might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/add_edit_amendments.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/add_edit_amendments.php - - message: '#^Variable \$resultSet might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/add_edit_amendments.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/add_edit_amendments.php - - message: '#^Variable \$ISSUE_CLASSIFICATIONS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/add_edit_issue.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/add_edit_issue.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/add_edit_issue.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/add_edit_issue.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/add_edit_issue.php - - message: '#^Variable \$form_adreviewed might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/advancedirectives.php - - message: '#^Variable \$form_completedad might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/advancedirectives.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/summary/advancedirectives.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/advancedirectives.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/advancedirectives.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/browse.php - - message: '#^Variable \$tback might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/browse.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/clinical_reminders_fragment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/clinical_reminders_fragment.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/patient_file/summary/create_portallogin.php - - message: '#^Variable \$oemr_ui might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/dashboard_header.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/dashboard_header.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/dashboard_header.php - - message: '#^Variable \$expand_icon_class might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/dashboard_header_simple_return.php - - message: '#^Variable \$expand_title might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/dashboard_header_simple_return.php - - message: '#^Variable \$expandable might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/dashboard_header_simple_return.php - - message: '#^Variable \$go_back_href might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/dashboard_header_simple_return.php - - message: '#^Variable \$header_title might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/dashboard_header_simple_return.php - - message: '#^Variable \$help_icon might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/dashboard_header_simple_return.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/dashboard_header_simple_return.php - - message: '#^Class OpenEMR\\Menu\\PatientMenuRole constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Class OpenEMR\\Patient\\Cards\\PortalCard constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$apptStyle2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$appts might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$bgColor might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$extraApptDate might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$firstApptIndx might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$num_of_days might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$past_appts might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$query might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$resNotNull might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$therapyGroupCategories might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$vitals_form_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$condition_str might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics_full.php - - message: '#^Variable \$date_init might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics_full.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/patient_file/summary/demographics_full.php - - message: '#^Path in include\(\) "\.\./\.\./\.\./custom/demographics_print\.php" is not a file or it does not exist\.$#' - identifier: include.fileNotFound - count: 1 - path: ../interface/patient_file/summary/demographics_print.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/demographics_print.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/demographics_print.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics_print.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics_print.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/demographics_save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/disc_fragment.php - - message: '#^Variable \$active might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/disclosure_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/summary/disclosure_full.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/disclosure_full.php - - message: '#^Variable \$administered_by might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$code might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$code_text might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$code_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$immunization_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$imo_criteria_value might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$observation_criteria might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$observation_criteria_value might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$vis_presented_dateval might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$vis_published_dateval might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/insurance_edit.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/summary/insurance_edit.php - - message: '#^Variable \$date_collected might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/labdata.php - - message: '#^Variable \$nothing might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/labdata.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/summary/labdata.php - - message: '#^Variable \$result_code might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/labdata.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/labdata.php - - message: '#^Variable \$the_item might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/labdata.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/labdata.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/labdata_fragment.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/lbf_fragment.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/list_amendments.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/list_amendments.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/patient_reminders_fragment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/patient_reminders_fragment.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/pnotes.php - - message: '#^Variable \$tmore might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/pnotes_fragment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/pnotes_fragment.php - - message: '#^Variable \$notes_sent_count might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_full.php - - message: '#^Variable \$result_count might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_full.php - - message: '#^Variable \$result_sent_count might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_full.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_full_add.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/summary/pnotes_full_add.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_full_add.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_print.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/pnotes_print.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/print_amendments.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/print_amendments.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/record_disclosure.php - - message: '#^Undefined variable\: \$title$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/shot_record.php - - message: '#^Variable \$data might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/shot_record.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/shot_record.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/shot_record.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/stats.php - - message: '#^Variable \$kernel might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/stats.php - - message: '#^Variable \$need_head might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/stats.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/patient_file/summary/stats.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/stats.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/stats_full.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/stats_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/summary/stats_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/track_anything_fragment.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/vitals_fragment.php - - message: '#^Variable \$date_init might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/transaction/add_transaction.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/transaction/add_transaction.php - - message: '#^Variable \$newid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/transaction/add_transaction.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 13 - path: ../interface/patient_file/transaction/add_transaction.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/transaction/add_transaction.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/transaction/add_transaction.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/transaction/print_referral.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/transaction/print_referral.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/transaction/print_referral.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/transaction/record_request.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/transaction/transactions.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/transaction/transactions.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/transaction/transactions.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/void_dialog.php - - message: '#^Function sortAppointments invoked with 3 parameters, 1\-2 required\.$#' - identifier: arguments.count - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$MedEx might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$count_facs might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$count_provs might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$current_events might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$from_date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$from_date on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$icon2_here might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$icon_4_CALL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$icon_extra might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$icon_here might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$icons might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$local might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$ptkr_future_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$reason_visit might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$select_facs might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$select_provs might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$statuses_list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$to_date on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_tracker/patient_tracker_status.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/procedure_tools/ereqs/ereq_universal_form.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/procedure_tools/ereqs/ereq_universal_form.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/procedure_tools/gen_universal_hl7/gen_hl7_order.inc.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/procedure_tools/labcorp/ereq_form.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/procedure_tools/labcorp/ereq_form.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/procedure_tools/labcorp/gen_hl7_order.inc.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/procedure_tools/quest/gen_hl7_order.inc.php - - message: '#^Function formatPatientReportData invoked with 6 parameters, 3\-4 required\.$#' - identifier: arguments.count - count: 1 - path: ../interface/reports/amc_full_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/amc_full_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/amc_tracking.php - - message: '#^Variable \$rems_out might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/appointments_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/appointments_report.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/appt_encounter_report.php - - message: '#^Variable \$res might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/appt_encounter_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/appt_encounter_report.php - - message: '#^Variable \$checkSumNewApi might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/audit_log_tamper_report.php - - message: '#^Variable \$getevent might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/audit_log_tamper_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/cdr_log.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/chart_location_activity.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/chart_location_activity.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/charts_checked_out.php - - message: '#^Variable \$mh_stmt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/clinical_reports.php - - message: '#^Variable \$odrstmt might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/reports/clinical_reports.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/clinical_reports.php - - message: '#^Variable \$agecolno might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/collections_report.php - - message: '#^Variable \$ins_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/collections_report.php - - message: '#^Variable \$insposition might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/collections_report.php - - message: '#^Variable \$invlines might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/collections_report.php - - message: '#^Variable \$provider_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/collections_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/collections_report.php - - message: '#^Variable \$report_id on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/reports/cqm.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/cqm.php - - message: '#^Variable \$EXPORT_INC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$RadioSeperator might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaDataTypeMaster might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaDisplayMaster might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaDisplayRadioMaster might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaIncludeMaster might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaKeyMaster might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaQueryDropDownMaster might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaQueryDropDownMasterDefault might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaQueryDropDownMasterDefaultKey might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaRadioKeyMaster might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TextSeperator might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$daysheet might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$daysheet_total might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$provider_run might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$insurance_data_array might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/custom_report_range.php - - message: '#^Variable \$patient_data_array might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/custom_report_range.php - - message: '#^Variable \$pids might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/reports/custom_report_range.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/custom_report_range.php - - message: '#^Variable \$selectedFacility in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/reports/daily_summary_report.php - - message: '#^Variable \$selectedProvider in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/reports/daily_summary_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/daily_summary_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/destroyed_drugs_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/encounters_report.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/external_data.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/external_data.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/external_data.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/front_receipts_report.php - - message: '#^Variable \$total1_by_method might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/front_receipts_report.php - - message: '#^Variable \$total2_by_method might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/front_receipts_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/immunization_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/inventory_activity.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/inventory_list.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/inventory_list.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/inventory_transactions.php - - message: '#^Variable \$productleft might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/ippf_cyp_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/ippf_cyp_report.php - - message: '#^Variable \$report_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/ippf_daily.php - - message: '#^Function genAnyCell invoked with 4 parameters, 1\-3 required\.$#' - identifier: arguments.count - count: 1 - path: ../interface/reports/ippf_statistics.php - - message: '#^Function genHeadCell invoked with 3 parameters, 1\-2 required\.$#' - identifier: arguments.count - count: 4 - path: ../interface/reports/ippf_statistics.php - - message: '#^Variable \$arr_report in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/reports/ippf_statistics.php - - message: '#^Variable \$form_report might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/ippf_statistics.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/message_list.php - - message: '#^Variable \$openemr_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/non_reported.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/non_reported.php - - message: '#^Variable \$effectiveInsurances might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/pat_ledger.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/pat_ledger.php - - message: '#^Variable \$last_year might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/pat_ledger.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/pat_ledger.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/patient_flow_board_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/patient_list.php - - message: '#^Variable \$observation_description in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/reports/patient_list_creation.php - - message: '#^Variable \$odrstmt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/patient_list_creation.php - - message: '#^Variable \$prescription_drug in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/reports/patient_list_creation.php - - message: '#^Variable \$procedure_diagnosis in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/reports/patient_list_creation.php - - message: '#^Variable \$sortlink might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/patient_list_creation.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/patient_list_creation.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/prescriptions_report.php - - message: '#^Undefined variable\: \$invnumber$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/receipts_by_method_report.php - - message: '#^Variable \$b in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 2 - path: ../interface/reports/receipts_by_method_report.php - - message: '#^Variable \$key in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../interface/reports/receipts_by_method_report.php - - message: '#^Variable \$rowmethod might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/receipts_by_method_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/receipts_by_method_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/referrals_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/report_results.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/sales_by_item.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/services_by_category.php - - message: '#^Variable \$key might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/services_by_category.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/svc_code_financial_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/unique_seen_patients_report.php - - message: '#^Variable \$logocode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/smart/register-app.php - - message: '#^Variable \$tinylogocode1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/smart/register-app.php - - message: '#^Variable \$tinylogocode2 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/smart/register-app.php - - message: '#^Variable \$GLOBALS_METADATA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/super/edit_globals.php - - message: '#^Variable \$USER_SPECIFIC_GLOBALS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/super/edit_globals.php - - message: '#^Variable \$USER_SPECIFIC_TABS might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/super/edit_globals.php - - message: '#^Variable \$globalTitle might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/super/edit_globals.php - - message: '#^Variable \$globalValue might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../interface/super/edit_globals.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/super/edit_globals.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_globals.php - - message: '#^Variable \$datatypes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_layout.php - - message: '#^Variable \$sources might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_layout.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_layout.php - - message: '#^Variable \$typesUsingList might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_layout.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_layout_props.php - - message: '#^Variable \$code might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/super/edit_list.php - - message: '#^Variable \$id in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/super/edit_list.php - - message: '#^Variable \$id in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/super/edit_list.php - - message: '#^Variable \$modifier on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/super/edit_list.php - - message: '#^Variable \$ok_map_cvx_codes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_list.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/super/edit_list.php - - message: '#^Variable \$total_rows might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_list.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/super/layout_service_codes.php - - message: '#^Variable \$eres might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/layout_service_codes.php - - message: '#^Variable \$tmp might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/layout_service_codes.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/manage_document_templates.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/manage_site_files.php - - message: '#^Variable \$resp in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/super/manage_site_files.php - - message: '#^Variable \$fldname might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/templates/field_html_display_section.php - - message: '#^Variable \$userMode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/templates/field_multi_sorted_list_selector.php - - message: '#^Variable \$therapy_group might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/index.php - - message: '#^Access to an undefined property ParticipantsController\:\:\$groupEventsModel\.$#' - identifier: property.notFound - count: 2 - path: ../interface/therapy_groups/therapy_groups_controllers/participants_controller.php - - message: '#^Access to an undefined property ParticipantsController\:\:\$groupModel\.$#' - identifier: property.notFound - count: 2 - path: ../interface/therapy_groups/therapy_groups_controllers/participants_controller.php - - message: '#^Access to an undefined property ParticipantsController\:\:\$groupParticipantsModel\.$#' - identifier: property.notFound - count: 6 - path: ../interface/therapy_groups/therapy_groups_controllers/participants_controller.php - - message: '#^Access to an undefined property TherapyGroupsController\:\:\$counselorsModel\.$#' - identifier: property.notFound - count: 4 - path: ../interface/therapy_groups/therapy_groups_controllers/therapy_groups_controller.php - - message: '#^Variable \$encounters might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_models/therapy_groups_encounters_model.php - - message: '#^Variable \$providers might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/therapy_groups/therapy_groups_models/users_model.php - - message: '#^Variable \$groupData might not be defined\.$#' - identifier: variable.undefined - count: 15 - path: ../interface/therapy_groups/therapy_groups_views/addGroup.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/therapy_groups/therapy_groups_views/addGroup.php - - message: '#^Variable \$savingStatus might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/therapy_groups/therapy_groups_views/addGroup.php - - message: '#^Variable \$statuses might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/addGroup.php - - message: '#^Variable \$users might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/addGroup.php - - message: '#^Variable \$events might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/appointmentComponent.php - - message: '#^Variable \$groupData might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/therapy_groups/therapy_groups_views/appointmentComponent.php - - message: '#^Variable \$groupId might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/therapy_groups/therapy_groups_views/appointmentComponent.php - - message: '#^Variable \$groupData might not be defined\.$#' - identifier: variable.undefined - count: 26 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php - - message: '#^Variable \$groupId might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php - - message: '#^Variable \$readonly might not be defined\.$#' - identifier: variable.undefined - count: 13 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php - - message: '#^Variable \$savingStatus might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php - - message: '#^Variable \$statuses might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php - - message: '#^Variable \$users might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php - - message: '#^Variable \$addStatus might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$groupId might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$groupName might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$group_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$participant_data might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$participants might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$readonly might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$statuses might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$counselors might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/listGroups.php - - message: '#^Variable \$deletion_response might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/therapy_groups/therapy_groups_views/listGroups.php - - message: '#^Variable \$deletion_try might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/listGroups.php - - message: '#^Variable \$group_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/listGroups.php - - message: '#^Variable \$statuses might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/therapy_groups/therapy_groups_views/listGroups.php - - message: '#^Variable \$therapyGroups might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/listGroups.php - - message: '#^Variable \$row might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/addrbook_edit.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/addrbook_edit.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/addrbook_list.php - - message: '#^Variable \$result2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/facilities.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/facilities_add.php - - message: '#^Variable \$my_fid on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/usergroup/facility_admin.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/facility_admin.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/facility_user.php - - message: '#^Variable \$date_init might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/facility_user_admin.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/facility_user_admin.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/mfa_registrations.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/mfa_totp.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/mfa_u2f.php - - message: '#^Variable \$email might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/ssl_certificates_admin.php - - message: '#^Variable \$user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/ssl_certificates_admin.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/user_admin.php - - message: '#^Variable \$selected_user_is_superuser might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/usergroup/user_admin.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/user_admin.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/user_info.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/user_info.php - - message: '#^Variable \$SMTP_HOST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$current_date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$grace_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$grouplist might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$pwd_expires might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$result4 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$result5 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$success might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$un might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$grouplist might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/usergroup_admin_add.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/usergroup_admin_add.php - - message: '#^Variable \$result3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin_add.php - - message: '#^Variable \$result5 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin_add.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/usergroup_admin_add.php - - message: '#^Variable \$dbase might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../ippf_upgrade.php - - message: '#^Access to an undefined property ESign\\Abstract_Controller\:\:\$_view\.$#' - identifier: property.notFound - count: 3 - path: ../library/ESign/Abstract/Controller.php - - message: '#^Access to an undefined property ESign\\Request\:\:\$_params\.$#' - identifier: property.notFound - count: 1 - path: ../library/ESign/Abstract/Controller.php - - message: '#^Path in include\(\) "views/esign_signature_log\.php" is not a file or it does not exist\.$#' - identifier: include.fileNotFound - count: 1 - path: ../library/ESign/DbRow/Signable.php - - message: '#^Access to an undefined property ESign\\Encounter_Controller\:\:\$_view\.$#' - identifier: property.notFound - count: 1 - path: ../library/ESign/Encounter/Controller.php - - message: '#^Static method OpenEMR\\Common\\Auth\\AuthUtils\:\:verifyGoogleSignIn\(\) invoked with 2 parameters, 1 required\.$#' - identifier: arguments.count - count: 1 - path: ../library/ESign/Encounter/Controller.php - - message: '#^Access to an undefined property ESign\\Form_Controller\:\:\$_view\.$#' - identifier: property.notFound - count: 1 - path: ../library/ESign/Form/Controller.php - - message: '#^Static method OpenEMR\\Common\\Auth\\AuthUtils\:\:verifyGoogleSignIn\(\) invoked with 2 parameters, 1 required\.$#' - identifier: arguments.count - count: 1 - path: ../library/ESign/Form/Controller.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/ESign/views/default/esign_signature_log.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/ESign/views/encounter/esign_button.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../library/ESign/views/encounter/esign_form.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/ESign/views/form/esign_button.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../library/ESign/views/form/esign_form.php - - message: '#^Function acl_check not found\.$#' - identifier: function.notFound - count: 1 - path: ../library/FeeSheet.class.php - - message: '#^Function updateInvoiceRefNumber not found\.$#' - identifier: function.notFound - count: 1 - path: ../library/FeeSheet.class.php - - message: '#^Variable \$autojustify might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/FeeSheet.class.php - - message: '#^Access to an undefined property MedExApi\\Display\:\:\$lastError\.$#' - identifier: property.notFound - count: 4 - path: ../library/MedEx/API.php - - message: '#^Access to an undefined property MedExApi\\Events\:\:\$lastError\.$#' - identifier: property.notFound - count: 2 - path: ../library/MedEx/API.php - - message: '#^Access to an undefined property MedExApi\\Practice\:\:\$lastError\.$#' - identifier: property.notFound - count: 1 - path: ../library/MedEx/API.php - - message: '#^Access to an undefined property MedExApi\\Setup\:\:\$lastError\.$#' - identifier: property.notFound - count: 1 - path: ../library/MedEx/API.php - - message: '#^Call to static method NWeekdayOfMonth\(\) on an unknown class MedExApi\\Date_Calc\.$#' - identifier: class.notFound - count: 1 - path: ../library/MedEx/API.php - - message: '#^Class MedExApi\\Base referenced with incorrect case\: MedExApi\\base\.$#' - identifier: class.nameCase - count: 2 - path: ../library/MedEx/API.php - - message: '#^Instantiated class MedExApi\\DateTime not found\.$#' - identifier: class.notFound - count: 2 - path: ../library/MedEx/API.php - - message: '#^Undefined variable\: \$form_patient_id$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Undefined variable\: \$form_patient_name$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Undefined variable\: \$prog$#' - identifier: variable.undefined - count: 3 - path: ../library/MedEx/API.php - - message: '#^Undefined variable\: \$setting_selectors$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Undefined variable\: \$userid$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$deletes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$events on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$expired might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$facility might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/MedEx/API.php - - message: '#^Variable \$form_patient_id in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$form_patient_name in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$icon might not be defined\.$#' - identifier: variable.undefined - count: 13 - path: ../library/MedEx/API.php - - message: '#^Variable \$last_col_width might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$no_fu might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$no_interval might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$pid_list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$provider might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/MedEx/API.php - - message: '#^Variable \$ptkr_future_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$result2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$setting_selectors in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$tell_MedEx might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$today might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/MedEx/API.php - - message: '#^Variable \$MedEx might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/MedEx.php - - message: '#^Variable \$result4 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/adminacl_ajax.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/adminacl_ajax.php - - message: '#^Undefined variable\: \$default$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/code_attributes_ajax.php - - message: '#^Variable \$fileroot might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/ajax/code_attributes_ajax.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/ajax/dated_reminders_counter.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/ajax/easipro_util.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/facility_ajax_code.php - - message: '#^Variable \$name_alt might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../library/ajax/graphs.php - - message: '#^Variable \$titleGraphLine1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/graphs.php - - message: '#^Variable \$titleGraphLine2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/graphs.php - - message: '#^Instantiated class TwigContainer not found\.$#' - identifier: class.notFound - count: 1 - path: ../library/ajax/immunization_export.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/messages/validate_messages_document_ajax.php - - message: '#^Variable \$twig in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../library/ajax/messages/validate_messages_document_ajax.php - - message: '#^Undefined variable\: \$bgcolor$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/payment_ajax.php - - message: '#^Variable \$StringToAppend might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/ajax/payment_ajax.php - - message: '#^Variable \$StringToAppend2 might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/ajax/payment_ajax.php - - message: '#^Variable \$bgcolor on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/ajax/payment_ajax.php - - message: '#^Variable \$patient_code might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../library/ajax/payment_ajax.php - - message: '#^Variable \$patient_code_complete might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/payment_ajax.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/set_pt.php - - message: '#^Variable \$isPortal on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/ajax/upload.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/ajax/upload.php - - message: '#^Variable \$rtn might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/upload.php - - message: '#^Undefined variable\: \$provider$#' - identifier: variable.undefined - count: 1 - path: ../library/amc.php - - message: '#^Variable \$provider in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../library/amc.php - - message: '#^Undefined variable\: \$pid$#' - identifier: variable.undefined - count: 2 - path: ../library/api.inc.php - - message: '#^Variable \$res in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../library/appointments.inc.php - - message: '#^Access to undefined constant procedure\:\:DIALYSIS_SERVICE\.$#' - identifier: classConstant.notFound - count: 1 - path: ../library/classes/ClinicalTypes/codes.php - - message: '#^Access to undefined constant procedure\:\:INFLU_VACCINE\.$#' - identifier: classConstant.notFound - count: 1 - path: ../library/classes/ClinicalTypes/codes.php - - message: '#^Access to undefined constant procedure\:\:PNEUMOCOCCAL_VACCINE\.$#' - identifier: classConstant.notFound - count: 1 - path: ../library/classes/ClinicalTypes/codes.php - - message: '#^Class procedure referenced with incorrect case\: Procedure\.$#' - identifier: class.nameCase - count: 3 - path: ../library/classes/ClinicalTypes/codes.php - - message: '#^Variable \$inline_arg might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/Controller.class.php - - message: '#^Access to an undefined property CouchDB\:\:\$body\.$#' - identifier: property.notFound - count: 1 - path: ../library/classes/CouchDB.class.php - - message: '#^Access to an undefined property CouchDB\:\:\$dbase\.$#' - identifier: property.notFound - count: 6 - path: ../library/classes/CouchDB.class.php - - message: '#^Access to an undefined property CouchDB\:\:\$headers\.$#' - identifier: property.notFound - count: 1 - path: ../library/classes/CouchDB.class.php - - message: '#^Access to an undefined property CouchDB\:\:\$host\.$#' - identifier: property.notFound - count: 6 - path: ../library/classes/CouchDB.class.php - - message: '#^Access to an undefined property CouchDB\:\:\$pass\.$#' - identifier: property.notFound - count: 2 - path: ../library/classes/CouchDB.class.php - - message: '#^Access to an undefined property CouchDB\:\:\$port\.$#' - identifier: property.notFound - count: 5 - path: ../library/classes/CouchDB.class.php - - message: '#^Access to an undefined property CouchDB\:\:\$user\.$#' - identifier: property.notFound - count: 2 - path: ../library/classes/CouchDB.class.php - - message: '#^Variable \$thumbnail_data might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/classes/Document.class.php - - message: '#^Constructor of class InsuranceCompany has an unused parameter \$prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../library/classes/InsuranceCompany.class.php - - message: '#^Method InsuranceCompany\:\:populate\(\) invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../library/classes/InsuranceCompany.class.php - - message: '#^Constructor of class InsuranceNumbers has an unused parameter \$prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../library/classes/InsuranceNumbers.class.php - - message: '#^Class Note referenced with incorrect case\: note\.$#' - identifier: class.nameCase - count: 1 - path: ../library/classes/Note.class.php - - message: '#^Function NumberToText not found\.$#' - identifier: function.notFound - count: 1 - path: ../library/classes/NumberToText.class.php - - message: '#^Undefined variable\: \$string$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/OFX.class.php - - message: '#^Constructor of class Person has an unused parameter \$prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../library/classes/Person.class.php - - message: '#^Constructor of class Pharmacy has an unused parameter \$prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../library/classes/Pharmacy.class.php - - message: '#^Method Pharmacy\:\:populate\(\) invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../library/classes/Pharmacy.class.php - - message: '#^Variable \$arr might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/Prescription.class.php - - message: '#^Variable \$string might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/Prescription.class.php - - message: '#^Constructor of class Provider has an unused parameter \$prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../library/classes/Provider.class.php - - message: '#^Call to an undefined method HTML_TreeMenu_Presentation\:\:toHTML\(\)\.$#' - identifier: method.notFound - count: 1 - path: ../library/classes/TreeMenu.php - - message: '#^Constructor of class X12Partner has an unused parameter \$prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../library/classes/X12Partner.class.php - - message: '#^Variable \$b2 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/classes/fpdf/fpdf.php - - message: '#^Variable \$cmapkey might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/classes/fpdf/fpdf.php - - message: '#^Variable \$ls might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/fpdf/fpdf.php - - message: '#^Variable \$ret might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/classes/postmaster.php - - message: '#^Variable \$sql might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/rulesets/Amc/library/AbstractAmcReport.php - - message: '#^Access to an undefined property smtp_class\:\:\$pending_sender\.$#' - identifier: property.notFound - count: 2 - path: ../library/classes/smtp/smtp.php - - message: '#^Constant SASL_PLAIN_EXIM_DOCUMENTATION_MODE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../library/classes/smtp/smtp.php - - message: '#^Constant SASL_PLAIN_EXIM_MODE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../library/classes/smtp/smtp.php - - message: '#^Method smtp_class\:\:GetLine\(\) invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../library/classes/smtp/smtp.php - - message: '#^Access to an undefined property Thumbnail\:\:\$max_size\.$#' - identifier: property.notFound - count: 4 - path: ../library/classes/thumbnail/Thumbnail.class.php - - message: '#^Variable \$new_file might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/thumbnail/ThumbnailGenerator.php - - message: '#^Variable \$types_support might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/thumbnail/ThumbnailGenerator.php - - message: '#^Variable \$excluded might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/clinical_rules.php - - message: '#^Variable \$new_conflicts in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/clinical_rules.php - - message: '#^Variable \$pass_filter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/clinical_rules.php - - message: '#^Variable \$patientNumber might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/clinical_rules.php - - message: '#^Variable \$percentage might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/clinical_rules.php - - message: '#^Variable \$temp_track_pass might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/clinical_rules.php - - message: '#^Variable \$contraception_billing_code in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/contraception_billing_scan.inc.php - - message: '#^Variable \$contraception_billing_prov in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/contraception_billing_scan.inc.php - - message: '#^Variable \$end might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/csv_like_join.php - - message: '#^Variable \$st might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/custom_template/add_custombutton.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/custom_template/custom_template.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/custom_template/custom_template.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/custom_template/custom_template.php - - message: '#^Variable \$filter_context on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../library/custom_template/personalize.php - - message: '#^Variable \$sel might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/custom_template/share_template.php - - message: '#^Variable \$dow might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../library/date_functions.php - - message: '#^Variable \$sendDMTo on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/dated_reminder_functions.php - - message: '#^Variable \$dn might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/deletedrug.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/dicom_frame.php - - message: '#^Variable \$body_text on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../library/direct_message_check.inc.php - - message: '#^Variable \$help_icon_title might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/display_help_icon_inc.php - - message: '#^Undefined variable\: \$ebo7$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_271_html.php - - message: '#^Variable \$cls might not be defined\.$#' - identifier: variable.undefined - count: 26 - path: ../library/edihistory/edih_271_html.php - - message: '#^Variable \$dmg03 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_271_html.php - - message: '#^Variable \$loopid might not be defined\.$#' - identifier: variable.undefined - count: 57 - path: ../library/edihistory/edih_271_html.php - - message: '#^Variable \$bht might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_277_html.php - - message: '#^Variable \$cls might not be defined\.$#' - identifier: variable.undefined - count: 42 - path: ../library/edihistory/edih_277_html.php - - message: '#^Variable \$loopid might not be defined\.$#' - identifier: variable.undefined - count: 33 - path: ../library/edihistory/edih_277_html.php - - message: '#^Variable \$qtystr might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/edihistory/edih_277_html.php - - message: '#^Variable \$sc204 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_277_html.php - - message: '#^Variable \$sc304 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_277_html.php - - message: '#^Undefined variable\: \$dtp03$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_278_html.php - - message: '#^Variable \$ar01 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_278_html.php - - message: '#^Variable \$dep_eb_html might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_278_html.php - - message: '#^Variable \$elem03 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_278_html.php - - message: '#^Variable \$elem05 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_278_html.php - - message: '#^Variable \$loopid might not be defined\.$#' - identifier: variable.undefined - count: 68 - path: ../library/edihistory/edih_278_html.php - - message: '#^Variable \$sbr_eb_html might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_278_html.php - - message: '#^Undefined variable\: \$cur03$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Undefined variable\: \$cur04$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Undefined variable\: \$n405$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$ca might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$cd might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$cls might not be defined\.$#' - identifier: variable.undefined - count: 34 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$cq might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$cr might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$loopid might not be defined\.$#' - identifier: variable.undefined - count: 38 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$plb_amt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$plb_rc might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$plb_rt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$plb_tr might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$svcfee might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$svcpmt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$ackcode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$acknote might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$fg_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$fg_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$sub_icn might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$subdate might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$substn might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$subtime might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$subtype might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_997_error.php - - message: '#^Undefined variable\: \$file_type$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Undefined variable\: \$frow$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_archive.php - - message: '#^Undefined variable\: \$msg$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$arch_fn might not be defined\.$#' - identifier: variable.undefined - count: 12 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$archive_dir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$car2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$car_cmb_unique might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$h might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$h_ar might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$isrn might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$params might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$tmp_dir might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$type_ar might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Undefined variable\: \$tp$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_data.php - - message: '#^Variable \$dtpd2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_data.php - - message: '#^Variable \$dtpdlbl might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_data.php - - message: '#^Variable \$errct might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_data.php - - message: '#^Variable \$fn might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_csv_data.php - - message: '#^Variable \$trc might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_csv_data.php - - message: '#^Undefined variable\: \$file_type$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_inc.php - - message: '#^Variable \$enc might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_inc.php - - message: '#^Variable \$pe might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_inc.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_inc.php - - message: '#^Variable \$rws might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_inc.php - - message: '#^Undefined variable\: \$rtp$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$bht03syn might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$bnfteq might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$cdx might not be defined\.$#' - identifier: variable.undefined - count: 39 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$err_seg might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$ft might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$gsdate might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$have_pt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$hl might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$isrsp might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$payer_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$payer_name might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$ptname might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$rej_ct might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$rqst might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$rspdate might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$rspsttype might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$rsptype might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$sar might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$svcdate might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$_FILES in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../library/edihistory/edih_io.php - - message: '#^Variable \$_GET in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../library/edihistory/edih_io.php - - message: '#^Variable \$qs might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_io.php - - message: '#^Variable \$str_html might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_io.php - - message: '#^Variable \$has_eb might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_segments.php - - message: '#^Variable \$has_iii might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_segments.php - - message: '#^Variable \$rspfile might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_segments.php - - message: '#^Variable \$rspicn might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_segments.php - - message: '#^Variable \$stn might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/edih_segments.php - - message: '#^Function edih_upload_match_file invoked with 3 parameters, 2 required\.$#' - identifier: arguments.count - count: 1 - path: ../library/edihistory/edih_uploads.php - - message: '#^Undefined variable\: \$err$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_uploads.php - - message: '#^Method edih_x12_file\:\:edih_message\(\) invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Undefined variable\: \$segment_ar$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Undefined variable\: \$st_pos$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$bht_pos might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$dr might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$ds might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$dt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$env_ar might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$gs_ct might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$gs_fid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$gs_start might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$gsn might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$icn might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$seg_ar might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$segidx might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$stn might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$ta1_icn in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Undefined variable\: \$de$#' - identifier: variable.undefined - count: 18 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Undefined variable\: \$delimiter3$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Undefined variable\: \$ds$#' - identifier: variable.undefined - count: 4 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$bpr02 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$check_amount might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$check_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$chk might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$ck might not be defined\.$#' - identifier: variable.undefined - count: 52 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$de might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$gs_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$i might not be defined\.$#' - identifier: variable.undefined - count: 27 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$loop might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$loopid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$lx01 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$out might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$plbar might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$pmt_html might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$seg might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$segid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Constant NET_SFTP_LOCAL_FILE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Constant NET_SFTP_TYPE_REGULAR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Function edih_sftp_connect not found\.$#' - identifier: function.notFound - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Undefined variable\: \$f_ct$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Undefined variable\: \$uplkey$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$actn might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$dir_to might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$fdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$host might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$ldir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$p_ct might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$pass might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$pdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$port might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$sftp_hosts might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$site in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$current_state might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/expand_contract_inc.php - - message: '#^Variable \$s on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/formdata.inc.php - - message: '#^Variable \$where might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/forms.inc.php - - message: '#^Variable \$text on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/htmlspecialchars.inc.php - - message: '#^Undefined variable\: \$CPR$#' - identifier: variable.undefined - count: 2 - path: ../library/ippf_issues.inc.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/ippf_issues.inc.php - - message: '#^Variable \$datetimepicker_formatInput might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/js/xl/jquery-datetimepicker-2-5-4.js.php - - message: '#^Variable \$datetimepicker_showseconds might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/js/xl/jquery-datetimepicker-2-5-4.js.php - - message: '#^Variable \$datetimepicker_timepicker might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/js/xl/jquery-datetimepicker-2-5-4.js.php - - message: '#^Function genLabResultsTextItem invoked with 7 parameters, 5\-6 required\.$#' - identifier: arguments.count - count: 3 - path: ../library/options.inc.php - - message: '#^Undefined variable\: \$disabled$#' - identifier: variable.undefined - count: 1 - path: ../library/options.inc.php - - message: '#^Undefined variable\: \$lbfonchange$#' - identifier: variable.undefined - count: 1 - path: ../library/options.inc.php - - message: '#^Undefined variable\: \$list_id_esc$#' - identifier: variable.undefined - count: 1 - path: ../library/options.inc.php - - message: '#^Undefined variable\: \$under$#' - identifier: variable.undefined - count: 1 - path: ../library/options.inc.php - - message: '#^Variable \$code_desc might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/options.inc.php - - message: '#^Variable \$encounterResult in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/options.inc.php - - message: '#^Variable \$group_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/options.inc.php - - message: '#^Variable \$lrow might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/options.inc.php - - message: '#^Variable \$metadata might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/options.inc.php - - message: '#^Variable \$pdrow in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../library/options.inc.php - - message: '#^Variable \$tmp in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/options.inc.php - - message: '#^Variable \$insarr might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/patient.inc.php - - message: '#^Variable \$returnval might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../library/patient.inc.php - - message: '#^Variable \$AccountCode might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/payment.inc.php - - message: '#^Variable \$AdjustString might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/payment.inc.php - - message: '#^Variable \$all might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/pnotes.inc.php - - message: '#^Variable \$all might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/registry.inc.php - - message: '#^Function fetch_reminders invoked with 1 parameter, 2 required\.$#' - identifier: arguments.count - count: 4 - path: ../library/reminders.php - - message: '#^Variable \$tempCollectReminders might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/reminders.php - - message: '#^Variable \$update_rem_log might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/reminders.php - - message: '#^Variable \$where might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/reminders.php - - message: '#^Variable \$arcount might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/report.inc.php - - message: '#^Variable \$ret might not be defined\.$#' - identifier: variable.undefined - count: 15 - path: ../library/report.inc.php - - message: '#^Variable \$retar might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/report.inc.php - - message: '#^Variable \$pass_sql might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/report_database.inc.php - - message: '#^Method Smarty_Compiler_Legacy\:\:_compile_tag\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Method Smarty_Compiler_Legacy\:\:_pop_tag\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$_output might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$arg_list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$attr_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$compiled_ref might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$expr might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$include_file might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$last_token might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$plugin_func might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$return might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Undefined variable\: \$dummy$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php - - message: '#^Variable \$_debug_start_time might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php - - message: '#^Variable \$_included_tpls_idx might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php - - message: '#^Variable \$_smarty_results might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php - - message: '#^Variable \$debug_start_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php - - message: '#^Variable \$included_tpls_idx might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php - - message: '#^Variable \$_readable might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/internals/core.get_php_resource.php - - message: '#^Variable \$_template_source might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/internals/core.get_php_resource.php - - message: '#^Variable \$_message might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/internals/core.load_plugins.php - - message: '#^Variable \$_plugin_func might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/internals/core.load_plugins.php - - message: '#^Variable \$debug_start_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/internals/core.process_cached_inserts.php - - message: '#^Function smarty_core_run_insert_handler\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../library/smarty_legacy/smarty/internals/core.run_insert_handler.php - - message: '#^Variable \$_debug_start_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/internals/core.run_insert_handler.php - - message: '#^Variable \$_config_vars might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/smarty_legacy/smarty/plugins/function.config_load.php - - message: '#^Variable \$_debug_start_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.config_load.php - - message: '#^Undefined variable\: \$_var_compiled$#' - identifier: variable.undefined - count: 2 - path: ../library/smarty_legacy/smarty/plugins/function.eval.php - - message: '#^Variable \$accept in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.fetch.php - - message: '#^Function smarty_function_html_checkboxes\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_checkboxes.php - - message: '#^Variable \$values in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_checkboxes.php - - message: '#^Variable \$file in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_image.php - - message: '#^Variable \$options in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_options.php - - message: '#^Variable \$values in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_options.php - - message: '#^Function smarty_function_html_radios\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_radios.php - - message: '#^Variable \$_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_radios.php - - message: '#^Variable \$values in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_radios.php - - message: '#^Variable \$day_empty in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_select_date.php - - message: '#^Variable \$month_empty in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_select_date.php - - message: '#^Variable \$year_empty in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_select_date.php - - message: '#^Undefined variable\: \$loop$#' - identifier: variable.undefined - count: 2 - path: ../library/smarty_legacy/smarty/plugins/function.html_table.php - - message: '#^Variable \$caption in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_table.php - - message: '#^Variable \$function in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.popup.php - - message: '#^Variable \$inarray in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.popup.php - - message: '#^Variable \$text in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.popup.php - - message: '#^Function smarty_function_popup_init\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.popup_init.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/plugins/modifier.date_format.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/specialty_forms.php - - message: '#^Variable \$bcodes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/spreadsheet.inc.php - - message: '#^Variable \$cellstatic might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/spreadsheet.inc.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/spreadsheet.inc.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/spreadsheet.inc.php - - message: '#^Variable \$saveid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/spreadsheet.inc.php - - message: '#^Variable \$spreadsheet_form_name might not be defined\.$#' - identifier: variable.undefined - count: 21 - path: ../library/spreadsheet.inc.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/spreadsheet.inc.php - - message: '#^Variable \$handle1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/standard_tables_capture.inc.php - - message: '#^Variable \$new_str might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/standard_tables_capture.inc.php - - message: '#^Variable \$smallform on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 11 - path: ../library/templates/address_list_form.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/translation.inc.php - - message: '#^Variable \$use_validate_js might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/validation/validation_script.js.php - - message: '#^Variable \$check_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/batch_phone_notification.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/batch_phone_notification.php - - message: '#^Variable \$ssql might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/batch_phone_notification.php - - message: '#^Function cron_GetAlertPatientData invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../modules/sms_email_reminder/cron_email_notification.php - - message: '#^Variable \$EMAIL_NOTIFICATION_HOUR might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../modules/sms_email_reminder/cron_email_notification.php - - message: '#^Variable \$data_info might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/cron_email_notification.php - - message: '#^Variable \$patient_info might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/cron_email_notification.php - - message: '#^Variable \$smsgateway_info might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/cron_email_notification.php - - message: '#^Path in include\(\) "getmxrr\.php" is not a file or it does not exist\.$#' - identifier: include.fileNotFound - count: 1 - path: ../modules/sms_email_reminder/cron_functions.php - - message: '#^Class sms constructor invoked with 3 parameters, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../modules/sms_email_reminder/cron_sms_notification.php - - message: '#^Function cron_GetAlertPatientData invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../modules/sms_email_reminder/cron_sms_notification.php - - message: '#^Variable \$SMS_NOTIFICATION_HOUR might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../modules/sms_email_reminder/cron_sms_notification.php - - message: '#^Variable \$data_info might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/cron_sms_notification.php - - message: '#^Variable \$patient_info might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/cron_sms_notification.php - - message: '#^Variable \$smsgateway_info might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/cron_sms_notification.php - - message: '#^Access to an undefined property sms\:\:\$base\.$#' - identifier: property.notFound - count: 5 - path: ../modules/sms_email_reminder/sms_clickatell.php - - message: '#^Access to an undefined property sms\:\:\$base_s\.$#' - identifier: property.notFound - count: 3 - path: ../modules/sms_email_reminder/sms_clickatell.php - - message: '#^Method sms\:\:_send_sock\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../modules/sms_email_reminder/sms_tmb4.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/sms_tmb4.php - - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../portal/account/account.lib.php - - message: '#^Variable \$mname on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../portal/account/account.lib.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/account/account.php - - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../portal/account/index_reset.php - - message: '#^Variable \$portalRegistrationAuthorization might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/account/register.php - - message: '#^Variable \$hiddenLanguageField might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/account/verify.php - - message: '#^Variable \$result2 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/account/verify.php - - message: '#^Variable \$result3 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/account/verify.php - - message: '#^Variable \$eid in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 3 - path: ../portal/add_edit_event_user.php - - message: '#^Variable \$event_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/add_edit_event_user.php - - message: '#^Variable \$insert might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/add_edit_event_user.php - - message: '#^Variable \$patientname might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/add_edit_event_user.php - - message: '#^Variable \$providers_current might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/add_edit_event_user.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/add_edit_event_user.php - - message: '#^Variable \$starttime might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/add_edit_event_user.php - - message: '#^Variable \$providerid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/find_appt_popup_user.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/find_appt_popup_user.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_allergies.php - - message: '#^Variable \$class might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_amendments.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_amendments.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_lab_results.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_medications.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_patient_documents.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_patient_documents.php - - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 2 - path: ../portal/get_patient_info.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_patient_info.php - - message: '#^Variable \$userData in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../portal/get_patient_info.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_prescriptions.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_pro.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_problems.php - - message: '#^Variable \$insurance_data_array might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/get_profile.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../portal/get_profile.php - - message: '#^Variable \$landingpage might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/home.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../portal/home.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/home.php - - message: '#^Variable \$defaultLangID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/index.php - - message: '#^Variable \$defaultLangName might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/index.php - - message: '#^Variable \$languageRegistration on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../portal/index.php - - message: '#^Variable \$one_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/index.php - - message: '#^Variable \$redirectUrl in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 3 - path: ../portal/index.php - - message: '#^Variable \$result2 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/index.php - - message: '#^Variable \$result3 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/index.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/lib/doc_lib.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/lib/patient_groups.php - - message: '#^Variable \$ccaudit might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/lib/paylib.php - - message: '#^Variable \$invoice might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/lib/paylib.php - - message: '#^Variable \$response might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/lib/paylib.php - - message: '#^Variable \$landingpage might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/logout.php - - message: '#^Variable \$owner in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../portal/messaging/handle_note.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/messaging/handle_note.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/messaging/messages.php - - message: '#^Variable \$resultpd on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../portal/messaging/messages.php - - message: '#^Variable \$resultusers on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../portal/messaging/messages.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/messaging/messages.php - - message: '#^Instantiated class OpenEMR\\PatientPortal\\Chat\\ChatController not found\.$#' - identifier: class.notFound - count: 1 - path: ../portal/messaging/secure_chat.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/SavantRenderEngine\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/_app_config.php - - message: '#^Instantiated class specify not found\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/_global_config.php - - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseConfig\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/_global_config.php - - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/_global_config.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/GenericRouter\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/_global_config.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/ObserveToSmarty\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/_global_config.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/PortalController\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/_global_config.php - - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/_machine_config.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/ConnectionSetting\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/_machine_config.php - - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/patient/_machine_config.php - - message: '#^Method Savant3_Filter_trimwhitespace\:\:replace\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/savant/Savant3/resources/Savant3_Filter_trimwhitespace.php - - message: '#^Method parseCSV\:\:_check_count\(\) should return special but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/util/parsecsv.lib.php - - message: '#^Method parseCSV\:\:encoding\(\) should return nothing but return statement is missing\.$#' - identifier: return.missing - count: 2 - path: ../portal/patient/fwk/libs/util/parsecsv.lib.php - - message: '#^Call to static method instance\(\) on an unknown class OAuthStore\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Authentication/OAuthUtil.php - - message: '#^Instantiated class OAuthRequester not found\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Authentication/OAuthUtil.php - - message: '#^Path in require_once\(\) "oauth/OAuthRequester\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Authentication/OAuthUtil.php - - message: '#^Path in require_once\(\) "oauth/OAuthStore\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Authentication/OAuthUtil.php - - message: '#^Path in require_once\(\) "verysimple/String/VerySimpleStringUtil\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Authentication/OAuthUtil.php - - message: '#^Function mysql_affected_rows not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_close not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_error not found\.$#' - identifier: function.notFound - count: 4 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_fetch_assoc not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_free_result not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_insert_id not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_ping not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_query not found\.$#' - identifier: function.notFound - count: 2 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_select_db not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_set_charset not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseConfig\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseException\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Path in require_once\(\) "verysimple/DB/ISqlFunction\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_ping not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL_PDO.php - - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseConfig\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL_PDO.php - - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseException\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL_PDO.php - - message: '#^Path in require_once\(\) "verysimple/DB/ISqlFunction\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL_PDO.php - - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseConfig\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQLi.php - - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseException\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQLi.php - - message: '#^Path in require_once\(\) "verysimple/DB/ISqlFunction\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQLi.php - - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseConfig\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/SQLite.php - - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseException\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/SQLite.php - - message: '#^Path in require_once\(\) "verysimple/DB/ISqlFunction\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/SQLite.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/FieldMap\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/Reflection/DBColumn.php - - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseException\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/Reflection/DBConnection.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/DataAdapter\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/Reflection/DBConnection.php - - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseException\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/Reflection/DBEventHandler.php - - message: '#^Method DBTable\:\:GetPrimaryKeyName\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/Reflection/DBTable.php - - message: '#^Variable \$curr_prefix might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/Reflection/DBTable.php - - message: '#^Undefined variable\: \$attachment$#' - identifier: variable.undefined - count: 4 - path: ../portal/patient/fwk/libs/verysimple/HTTP/FileUpload.php - - message: '#^Method HttpRequest\:\:FilePost\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/HTTP/HttpRequest.php - - message: '#^Path in require_once\(\) "verysimple/String/VerySimpleStringUtil\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 2 - path: ../portal/patient/fwk/libs/verysimple/HTTP/RequestUtil.php - - message: '#^Variable \$_POST in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../portal/patient/fwk/libs/verysimple/HTTP/RequestUtil.php - - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/HTTP/UrlWriter.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/ActionRouter\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/HTTP/UrlWriter.php - - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/ActionRouter.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IRouter\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/ActionRouter.php - - message: '#^Path in require_once\(\) "verysimple/Util/UrlWriterMode\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/ActionRouter.php - - message: '#^Access to constant engine on an unknown class Laravel\\View\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Access to constant loader on an unknown class Laravel\\View\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Call to static method fire\(\) on an unknown class Laravel\\Event\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Call to static method listen\(\) on an unknown class Laravel\\Event\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Call to static method make\(\) on an unknown class Laravel\\View\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Call to static method sharpen\(\) on an unknown class Laravel\\Blade\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Path in require_once\(\) "laravel/blade\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Path in require_once\(\) "laravel/bundle\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Path in require_once\(\) "laravel/event\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Path in require_once\(\) "laravel/helpers\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Path in require_once\(\) "laravel/messages\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Path in require_once\(\) "laravel/paths\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Path in require_once\(\) "laravel/section\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Path in require_once\(\) "laravel/session\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Path in require_once\(\) "laravel/view\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/BladeRenderEngine.php - - message: '#^Access to an undefined property CacheMemCache\:\:\$LastServerError\.$#' - identifier: property.notFound - count: 4 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/CacheMemCache.php - - message: '#^Path in require_once\(\) "verysimple/Util/ExceptionThrower\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/CacheMemCache.php - - message: '#^Method CacheNoCache\:\:Set\(\) should return VARIANT but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/CacheNoCache.php - - message: '#^Method CacheRam\:\:Set\(\) should return VARIANT but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/CacheRam.php - - message: '#^Path in require_once\(\) "verysimple/IO/Includer\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/Criteria.php - - message: '#^Path in include_once\(\) "verysimple/DB/DataDriver/MySQL\.php" is not a file or it does not exist\.$#' - identifier: includeOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataAdapter.php - - message: '#^Path in include_once\(\) "verysimple/DB/DataDriver/MySQLi\.php" is not a file or it does not exist\.$#' - identifier: includeOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataAdapter.php - - message: '#^Path in include_once\(\) "verysimple/DB/DataDriver/SQLite\.php" is not a file or it does not exist\.$#' - identifier: includeOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataAdapter.php - - message: '#^Path in require_once\(\) "verysimple/DB/DataDriver/IDataDriver\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataAdapter.php - - message: '#^Path in require_once\(\) "verysimple/IO/Includer\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataAdapter.php - - message: '#^Access to an undefined property DataSet\:\:\$_total\.$#' - identifier: property.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataSet.php - - message: '#^Path in require_once\(\) "verysimple/Util/ExceptionFormatter\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataSet.php - - message: '#^Class GenericRouter constructor invoked with 0 parameters, 3 required\.$#' - identifier: arguments.count - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/Dispatcher.php - - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/Dispatcher.php - - message: '#^Path in require_once\(\) "verysimple/Util/ExceptionThrower\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/Dispatcher.php - - message: '#^Call to static method createWriter\(\) on an unknown class PHPExcel_IOFactory\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/ExportUtility.php - - message: '#^Instantiated class PHPExcel not found\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/ExportUtility.php - - message: '#^Path in require_once\(\) "PEAR/PHPExcel\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/ExportUtility.php - - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/GenericRouter.php - - message: '#^Access to an undefined property MockRouter\:\:\$delim\.$#' - identifier: property.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/MockRouter.php - - message: '#^Access to an undefined property MockRouter\:\:\$stripApi\.$#' - identifier: property.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/MockRouter.php - - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/ObserveToFile.php - - message: '#^Access to an undefined property PHPRenderEngine\:\:\$templatePath\.$#' - identifier: property.notFound - count: 2 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PHPRenderEngine.php - - message: '#^Method Phreezable\:\:__serialize\(\) should return array\ but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/Phreezable.php - - message: '#^Method Phreezer\:\:GetPrimaryKeyMap\(\) should return KeyMap but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/Phreezer.php - - message: '#^Path in require_once\(\) "verysimple/IO/Includer\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/Phreezer.php - - message: '#^Class GenericRouter constructor invoked with 0 parameters, 3 required\.$#' - identifier: arguments.count - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Class IRSSFeedItem not found\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Instantiated class RSS_Writer not found\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Path in require_once\(\) "verysimple/Authentication/Auth401\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Path in require_once\(\) "verysimple/Authentication/Authenticator\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 2 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Path in require_once\(\) "verysimple/Authentication/IAuthenticatable\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Path in require_once\(\) "verysimple/HTTP/BrowserDevice\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Path in require_once\(\) "verysimple/HTTP/Context\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Path in require_once\(\) "verysimple/RSS/IRSSFeedItem\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Path in require_once\(\) "verysimple/RSS/Writer\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Path in require_once\(\) "verysimple/String/VerySimpleStringUtil\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Method Reporter\:\:__serialize\(\) should return array\ but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/Reporter.php - - message: '#^Path in require_once\(\) "savant/Savant3\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/SavantRenderEngine.php - - message: '#^Constructor of class SimpleRouter has an unused parameter \$appRootUrl\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/SimpleRouter.php - - message: '#^Method SimpleRouter\:\:GetUri\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/SimpleRouter.php - - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/SimpleRouter.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IRouter\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/SimpleRouter.php - - message: '#^Path in require_once\(\) "smarty/Smarty\.class\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/SmartyRenderEngine.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IRenderEngine\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/SmartyRenderEngine.php - - message: '#^Call to static method register\(\) on an unknown class Twig_Autoloader\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/TwigRenderEngine.php - - message: '#^Instantiated class Twig_Environment not found\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/TwigRenderEngine.php - - message: '#^Instantiated class Twig_Loader_Filesystem not found\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/TwigRenderEngine.php - - message: '#^Path in require_once\(\) "Twig/Autoloader\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/TwigRenderEngine.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IRenderEngine\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/TwigRenderEngine.php - - message: '#^Access to an undefined property NameValue\:\:\$Name\.$#' - identifier: property.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/String/NameValue.php - - message: '#^Access to an undefined property NameValue\:\:\$Value\.$#' - identifier: property.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/String/NameValue.php - - message: '#^Path in require_once\(\) "util/html2text\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/String/SimpleTemplate.php - - message: '#^Method VerySimpleStringUtil\:\:unicode_entity_replace\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/String/VerySimpleStringUtil.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/CacheMemCache\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Util/MemCacheProxy.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Dispatcher\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/index.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/PortalController\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Controller/AppBasePortalController.php - - message: '#^Path in require_once\(\) "Model/OnsiteActivityView\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Controller/OnsiteActivityViewController.php - - message: '#^Path in require_once\(\) "Model/OnsiteDocument\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Controller/OnsiteDocumentController.php - - message: '#^Variable \$errors on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../portal/patient/libs/Controller/OnsiteDocumentController.php - - message: '#^Path in require_once\(\) "Model/OnsitePortalActivity\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Controller/OnsitePortalActivityController.php - - message: '#^Path in require_once\(\) "Model/Patient\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Controller/PatientController.php - - message: '#^Variable \$output might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/patient/libs/Controller/PatientController.php - - message: '#^Path in require_once\(\) "Model/Patient\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Controller/PortalPatientController.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Criteria\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/OnsiteActivityViewCriteriaDAO.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Phreezable\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/OnsiteActivityViewDAO.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/OnsiteActivityViewMap-query.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap2\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/OnsiteActivityViewMap-query.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/OnsiteActivityViewMap.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap2\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/OnsiteActivityViewMap.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Criteria\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/OnsiteDocumentCriteriaDAO.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Phreezable\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/OnsiteDocumentDAO.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/OnsiteDocumentMap.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap2\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/OnsiteDocumentMap.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Criteria\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/OnsitePortalActivityCriteriaDAO.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Phreezable\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/OnsitePortalActivityDAO.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/OnsitePortalActivityMap.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap2\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/OnsitePortalActivityMap.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Criteria\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/PatientCriteriaDAO.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Phreezable\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/PatientDAO.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/PatientMap.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap2\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/PatientMap.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Criteria\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/UserCriteriaDAO.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Phreezable\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/UserDAO.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/UserMap.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap2\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Model/DAO/UserMap.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Reporter\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Reporter/OnsiteActivityViewReporter-query.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Reporter\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Reporter/OnsiteActivityViewReporter.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Reporter\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Reporter/OnsiteDocumentReporter.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Reporter\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Reporter/OnsitePortalActivityReporter.php - - message: '#^Path in require_once\(\) "verysimple/Phreeze/Reporter\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/libs/Reporter/PatientReporter.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/patient/templates/DefaultError404.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../portal/patient/templates/DefaultErrorFatal.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../portal/patient/templates/OnsiteActivityViewListView.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 14 - path: ../portal/patient/templates/OnsiteDocumentListView.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../portal/patient/templates/OnsitePortalActivityListView.tpl.php - - message: '#^Path in require_once\(\) "\.\./\.\./library/options\.inc\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - count: 1 - path: ../portal/patient/templates/PatientListView.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 14 - path: ../portal/patient/templates/PatientListView.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../portal/patient/templates/ProviderHome.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/patient/templates/_FormsHeader.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../portal/patient/templates/_Header.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../portal/patient/templates/_modalFormHeader.tpl.php - - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../portal/portal_payment.php - - message: '#^Variable \$form_pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/portal_payment.php - - message: '#^Variable \$payment_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/portal_payment.php - - message: '#^Variable \$payrow might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/portal_payment.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/portal_payment.php - - message: '#^Variable \$session_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/portal_payment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../portal/portal_payment.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/portal_payment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/document_downloads_action.php - - message: '#^Variable \$adj_amt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/pat_ledger.php - - message: '#^Variable \$last_year might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/report/pat_ledger.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../portal/report/pat_ledger.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/pat_ledger.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$from_file_tmp_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$insurance_data_array might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$prevIssueType might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$tmp_files_remove might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/portal_patient_report.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/portal_patient_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/report/portal_patient_report.php - - message: '#^Variable \$OE_SITES_BASE might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../setup.php - - message: '#^Variable \$config in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 2 - path: ../setup.php - - message: '#^Variable \$memory_limit_mb might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../setup.php - - message: '#^Variable \$randomsecret in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../setup.php - - message: '#^Variable \$sqlconf might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../setup.php - - message: '#^Variable \$state on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../setup.php - - message: '#^Undefined variable\: \$pid$#' - identifier: variable.undefined - count: 1 - path: ../sites/default/LBF/LBFathbf.plugin.php - - message: '#^Undefined variable\: \$pid$#' - identifier: variable.undefined - count: 1 - path: ../sites/default/LBF/LBFvbf.plugin.php - - message: '#^Variable \$desc might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sites/default/statement.inc.php - - message: '#^Variable \$dun_message might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../sites/default/statement.inc.php - - message: '#^Variable \$patientIdCc might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sphere/initial_response.php - - message: '#^Variable \$GLOBALS_METADATA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_patch.php - - message: '#^Variable \$v_database might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_patch.php - - message: '#^Variable \$v_major might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_patch.php - - message: '#^Variable \$v_minor might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_patch.php - - message: '#^Variable \$v_patch might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_patch.php - - message: '#^Variable \$v_realpatch might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../sql_patch.php - - message: '#^Variable \$v_tag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_patch.php - - message: '#^Variable \$GLOBALS_METADATA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_upgrade.php - - message: '#^Variable \$result2 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../sql_upgrade.php - - message: '#^Variable \$v_database might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_upgrade.php - - message: '#^Variable \$v_major might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_upgrade.php - - message: '#^Variable \$v_minor might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_upgrade.php - - message: '#^Variable \$v_patch might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_upgrade.php - - message: '#^Variable \$v_tag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_upgrade.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_upgrade.php - - message: '#^Variable \$query_part_day might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../src/Billing/BillingReport.php - - message: '#^Variable \$query_part_day1 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Billing/BillingReport.php - - message: '#^Variable \$row might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Billing/BillingUtilities.php - - message: '#^Variable \$msp might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Billing/Claim.php - - message: '#^Variable \$tmp in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Billing/Claim.php - - message: '#^Variable \$tmp might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Billing/Claim.php - - message: '#^Variable \$elog might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Billing/EDI270.php - - message: '#^Variable \$field in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Billing/EDI270.php - - message: '#^Variable \$responses in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Billing/EDI270.php - - message: '#^Variable \$returnval might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Billing/EDI270.php - - message: '#^Variable \$segmentcount might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Billing/EDI270.php - - message: '#^Variable \$MDY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Billing/Hcfa1500.php - - message: '#^Variable \$encounter_claim on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Billing/X125010837I.php - - message: '#^Variable \$allowed might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php - - message: '#^Variable \$columns might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php - - message: '#^Variable \$fld_target_criteria on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php - - message: '#^Variable \$message on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/ClinicalDecisionRules/Interface/RuleLibrary/Rule.php - - message: '#^Variable \$arr_group_titles might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Common/Acl/AclExtended.php - - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/Common/Auth/AuthUtils.php - - message: '#^Parameter \$previous of method OpenEMR\\Common\\Auth\\Exception\\OneTimeAuthException\:\:__construct\(\) has invalid type OpenEMR\\Common\\Auth\\Exception\\Throwable\.$#' - identifier: class.notFound - count: 1 - path: ../src/Common/Auth/Exception/OneTimeAuthException.php - - message: '#^Parameter \$previous of method OpenEMR\\Common\\Auth\\Exception\\OneTimeAuthExpiredException\:\:__construct\(\) has invalid type OpenEMR\\Common\\Auth\\Exception\\Throwable\.$#' - identifier: class.notFound - count: 1 - path: ../src/Common/Auth/Exception/OneTimeAuthExpiredException.php - - message: '#^Method OpenEMR\\Common\\Auth\\MfaUtils\:\:checkU2F\(\) should return bool but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../src/Common/Auth/MfaUtils.php - - message: '#^Variable \$response might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Common/Auth/MfaUtils.php - - message: '#^Variable \$this_contacts in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../src/Common/Auth/OpenIDConnect/Entities/ClientEntity.php - - message: '#^Variable \$client in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Common/Auth/OpenIDConnect/Grant/CustomPasswordGrant.php - - message: '#^Static method League\\OAuth2\\Server\\Exception\\UniqueTokenIdentifierConstraintViolationException\:\:create\(\) invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/Common/Auth/OpenIDConnect/Repositories/AccessTokenRepository.php - - message: '#^Variable \$clients in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Common/Auth/OpenIDConnect/Repositories/ClientRepository.php - - message: '#^Static method League\\OAuth2\\Server\\Exception\\UniqueTokenIdentifierConstraintViolationException\:\:create\(\) invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/Common/Auth/OpenIDConnect/Repositories/RefreshTokenRepository.php - - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../src/Common/Auth/OpenIDConnect/Repositories/RefreshTokenRepository.php - - message: '#^Variable \$issues might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Common/Command/CreateReleaseChangelogCommand.php - - message: '#^Constructor of class OpenEMR\\Common\\Forms\\FormVitals has an unused parameter \$_prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../src/Common/Forms/FormVitals.php - - message: '#^Variable \$code_types in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../src/Common/Forms/Types/BillingCodeType.php - - message: '#^Variable \$tmp in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Common/Forms/Types/LocalProviderListType.php - - message: '#^Variable \$parts in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Common/Http/HttpRestParsedRoute.php - - message: '#^Variable \$test in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../src/Common/Layouts/LayoutsUtils.php - - message: '#^Access to an undefined property OpenEMR\\Common\\ORDataObject\\ContactAddress\:\:\$use\.$#' - identifier: property.notFound - count: 1 - path: ../src/Common/ORDataObject/ContactAddress.php - - message: '#^Call to an undefined method OpenEMR\\Common\\ORDataObject\\ORDataObject\:\:get_id\(\)\.$#' - identifier: method.notFound - count: 1 - path: ../src/Common/ORDataObject/ORDataObject.php - - message: '#^Variable \$enum might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Common/ORDataObject/ORDataObject.php - - message: '#^Variable \$values might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Common/ORDataObject/ORDataObject.php - - message: '#^Method OpenEMR\\Core\\Header\:\:readConfigFile\(\) should return array but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../src/Core/Header.php - - message: '#^Method OpenEMR\\Core\\Header\:\:setupHeader\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../src/Core/Header.php - - message: '#^Class OpenEMR\\Cqm\\CqmClient constructor invoked with 0 parameters, 2\-4 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/Cqm/test.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:usingHeaders\(\)\.$#' - identifier: staticMethod.notFound - count: 5 - path: ../src/Easipro/Easipro.php - - message: '#^Undefined variable\: \$row$#' - identifier: variable.undefined - count: 1 - path: ../src/Easipro/Easipro.php - - message: '#^Variable \$returnval might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Easipro/Easipro.php - - message: '#^Method OpenEMR\\Events\\Messaging\\SendNotificationEvent\:\:setSendNotificationMethod\(\) should return OpenEMR\\Events\\Messaging\\SendNotificationEvent but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../src/Events/Messaging/SendNotificationEvent.php - - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Events/Messaging/SendNotificationEvent.php - - message: '#^Access to an undefined property OpenEMR\\Gacl\\Gacl\:\:\$Cache_Lite\.$#' - identifier: property.notFound - count: 5 - path: ../src/Gacl/Gacl.php - - message: '#^Instantiated class OpenEMR\\Gacl\\Hashed_Cache_Lite not found\.$#' - identifier: class.notFound - count: 1 - path: ../src/Gacl/Gacl.php - - message: '#^Variable \$retarr might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Gacl/Gacl.php - - message: '#^Access to an undefined property OpenEMR\\Gacl\\GaclApi\:\:\$Cache_Lite\.$#' - identifier: property.notFound - count: 6 - path: ../src/Gacl/GaclApi.php - - message: '#^Undefined variable\: \$row_count$#' - identifier: variable.undefined - count: 1 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$groups_map_table might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$object_group_table might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$object_map_table might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$object_sections_table might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$object_type in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 7 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$retarr might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$table might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$where in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Gacl/GaclApi.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' - identifier: staticMethod.notFound - count: 1 - path: ../src/MedicalDevice/MedicalDevice.php - - message: '#^Variable \$catEntry might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../src/Menu/MainMenuRole.php - - message: '#^Method OpenEMR\\Menu\\MenuRole\:\:displayMenuRoleSelector\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../src/Menu/MenuRole.php - - message: '#^Method OpenEMR\\Menu\\MenuRole\:\:getMenu\(\) should return array but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../src/Menu/MenuRole.php - - message: '#^Method OpenEMR\\Menu\\MenuRole\:\:getMenuRole\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../src/Menu/MenuRole.php - - message: '#^Variable \$action might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/OeUI/OemrUI.php - - message: '#^Variable \$action_href might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/OeUI/OemrUI.php - - message: '#^Variable \$action_title might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../src/OeUI/OemrUI.php - - message: '#^Function isEnforceSigninEmailPortal invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/Patient/Cards/PortalCard.php - - message: '#^Variable \$frontSpecificRetail might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/PaymentProcessing/Sphere/SpherePayment.php - - message: '#^Variable \$trxcustidRetail might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/PaymentProcessing/Sphere/SpherePayment.php - - message: '#^Variable \$trxcustidRetailLicensekey might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/PaymentProcessing/Sphere/SpherePayment.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:getCurlOptions\(\)\.$#' - identifier: staticMethod.notFound - count: 1 - path: ../src/Pharmacy/Services/ImportPharmacies.php - - message: '#^Variable \$zip might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Pharmacy/Services/ImportPharmacies.php - - message: '#^Class OpenEMR\\Services\\FHIR\\FhirDocRefService constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/RestControllers/FHIR/Operations/FhirOperationDocRefRestController.php - - message: '#^Method OpenEMR\\RestControllers\\FHIR\\Operations\\FhirOperationExportRestController\:\:getExportTimeoutExportError\(\) invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 2 - path: ../src/RestControllers/FHIR/Operations/FhirOperationExportRestController.php - - message: '#^Variable \$exportWriter might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/RestControllers/FHIR/Operations/FhirOperationExportRestController.php - - message: '#^Variable \$outputResult might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/RestControllers/FHIR/Operations/FhirOperationExportRestController.php - - message: '#^Variable \$resource might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/RestControllers/FHIR/Operations/FhirOperationExportRestController.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' - identifier: staticMethod.notFound - count: 1 - path: ../src/Rx/RxList.php - - message: '#^Variable \$all might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Rx/RxList.php - - message: '#^Variable \$ending might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Rx/RxList.php - - message: '#^Variable \$list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Rx/RxList.php - - message: '#^Variable \$my_data might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../src/Rx/RxList.php - - message: '#^Variable \$tokens might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../src/Rx/RxList.php - - message: '#^Variable \$type might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Rx/RxList.php - - message: '#^Variable \$ct_id might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$enc_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$enc_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$encounter_for_forms in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$encounter_for_forms might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$encounter_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$end_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$facility_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$forms_encounters on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$id_data might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$immunization_date_value might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$list_id might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$med_pblm_begdate_value might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$med_pblm_enddate_value might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$o_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$oid_unit might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$pro_id might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$provider_id might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res3 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res6 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res_q_sel_allergies might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res_q_sel_encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res_q_sel_imm might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res_q_sel_med_pblm might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res_q_sel_vitals might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res_query_sel_fac might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$static_encounter in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$test on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$vitals_date_value might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$vitals_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$code might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateParse.php - - message: '#^Variable \$func_name in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 4 - path: ../src/Services/Cda/CdaTemplateParse.php - - message: '#^Variable \$reason_status on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/Cda/CdaTemplateParse.php - - message: '#^Variable \$result_status on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../src/Services/Cda/CdaTemplateParse.php - - message: '#^Variable \$value on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 4 - path: ../src/Services/Cda/CdaTemplateParse.php - - message: '#^Variable \$form_id in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Services/ClinicalNotesService.php - - message: '#^Variable \$code in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Services/CodeTypesService.php - - message: '#^Variable \$code on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 3 - path: ../src/Services/CodeTypesService.php - - message: '#^Variable \$tmp on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/CodeTypesService.php - - message: '#^Variable \$type on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 3 - path: ../src/Services/CodeTypesService.php - - message: '#^Variable \$valueset on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/CodeTypesService.php - - message: '#^Variable \$valueset_name on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/CodeTypesService.php - - message: '#^Variable \$preppedData might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/ContactService.php - - message: '#^Variable \$attributes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/DecisionSupportInterventionService.php - - message: '#^Variable \$service might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/DecisionSupportInterventionService.php - - message: '#^Variable \$q_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/DocumentTemplates/DocumentTemplateRender.php - - message: '#^Variable \$group_list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/DocumentTemplates/DocumentTemplateService.php - - message: '#^Variable \$rtn might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/DocumentTemplates/DocumentTemplateService.php - - message: '#^Variable \$tid on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/DocumentTemplates/DocumentTemplateService.php - - message: '#^Undefined variable\: \$puuid$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/DrugService.php - - message: '#^Variable \$puuid in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../src/Services/DrugService.php - - message: '#^Method OpenEMR\\Services\\FHIR\\FhirDocRefService\:\:getMostCurrentCCDReference\(\) invoked with 2 parameters, 1 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/Services/FHIR/FhirDocRefService.php - - message: '#^Variable \$code might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/FHIR/FhirImmunizationService.php - - message: '#^Variable \$display might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/FHIR/FhirImmunizationService.php - - message: '#^Variable \$class_object might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/FHIR/FhirResourcesService.php - - message: '#^Variable \$codeMapping in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../src/Services/FHIR/Observation/FhirObservationLaboratoryService.php - - message: '#^Variable \$parsed_reference in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Services/FHIR/UtilsService.php - - message: '#^Instantiated class OpenEMR\\Pdf\\MpdfGenericPdfCreator not found\.$#' - identifier: class.notFound - count: 1 - path: ../src/Services/ImageUtilities/HandleImageService.php - - message: '#^Variable \$image might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/ImageUtilities/HandleImageService.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/InsuranceCompanyService.php - - message: '#^Method OpenEMR\\Services\\InsuranceService\:\:getOne\(\) invoked with 2 parameters, 1 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/Services/InsuranceService.php - - message: '#^Variable \$return might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/LogoService.php - - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/Services/PatientAccessOnsiteService.php - - message: '#^Class OpenEMR\\Events\\Patient\\Summary\\PortalCredentialsTemplateDataFilterEvent constructor invoked with 2 parameters, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/Services/PatientAccessOnsiteService.php - - message: '#^Variable \$kernel in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Services/PatientAccessOnsiteService.php - - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/PatientPortalService.php - - message: '#^Variable \$days might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/PatientTrackerService.php - - message: '#^Variable \$hours might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/PatientTrackerService.php - - message: '#^Variable \$minutes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/PatientTrackerService.php - - message: '#^Variable \$returnval might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/PatientTrackerService.php - - message: '#^Variable \$area_code on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/PhoneNumberService.php - - message: '#^Variable \$foreignId on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/PhoneNumberService.php - - message: '#^Variable \$number on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/PhoneNumberService.php - - message: '#^Variable \$prefix on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/PhoneNumberService.php - - message: '#^Variable \$type on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/PhoneNumberService.php - - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/Qrda/Cat1.php - - message: '#^Variable \$flatArray on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/QuestionnaireResponseService.php - - message: '#^Variable \$v on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/QuestionnaireResponseService.php - - message: '#^Variable \$form in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Services/QuestionnaireService.php - - message: '#^Variable \$q_url might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/QuestionnaireService.php - - message: '#^Variable \$q_uuid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/QuestionnaireService.php - - message: '#^Method OpenEMR\\Services\\Search\\FHIRSearchFieldFactory\:\:buildSearchField\(\) invoked with 3 parameters, 2 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/Services/Search/FHIRSearchFieldFactory.php - - message: '#^Variable \$DateValue on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/Utils/DateFormatterUtils.php - - message: '#^Variable \$newDate might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Utils/DateFormatterUtils.php - - message: '#^Method OpenEMR\\Services\\Utils\\SQLUpgradeService\:\:echo\(\) invoked with 2 parameters, 1 required\.$#' - identifier: arguments.count - count: 2 - path: ../src/Services/Utils/SQLUpgradeService.php - - message: '#^Variable \$records might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Utils/SQLUpgradeService.php - - message: '#^Variable \$subject in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Services/Utils/SQLUpgradeService.php - - message: '#^Access to undefined constant OpenEMR\\USPS\\USPSBase\:\:TEST_API_URL\.$#' - identifier: classConstant.notFound - count: 1 - path: ../src/USPS/USPSBase.php - - message: '#^Call to an undefined method OpenEMR\\USPS\\USPSBase\:\:getPostFields\(\)\.$#' - identifier: method.notFound - count: 1 - path: ../src/USPS/USPSBase.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../templates/super/rules/base/template/basic.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../templates/super/rules/base/template/criteria.php - - message: '#^Variable \$_redirect might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../templates/super/rules/base/template/redirect.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../templates/super/rules/controllers/alerts/list_actmgr.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../templates/super/rules/controllers/detail/view.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../templates/super/rules/controllers/edit/action.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../templates/super/rules/controllers/edit/add_criteria.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../templates/super/rules/controllers/edit/age.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 14 - path: ../templates/super/rules/controllers/edit/bucket.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 18 - path: ../templates/super/rules/controllers/edit/custom.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../templates/super/rules/controllers/edit/diagnosis.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../templates/super/rules/controllers/edit/intervals.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../templates/super/rules/controllers/edit/lifestyle.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../templates/super/rules/controllers/edit/sex.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../templates/super/rules/controllers/edit/simple_text_criteria.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../templates/super/rules/controllers/edit/summary.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../templates/super/rules/controllers/review/view.php - - message: '#^Caught class OpenEMR\\Tests\\E2e\\User\\Exception not found\.$#' - identifier: class.notFound - count: 1 - path: ../tests/Tests/E2e/BbCreateStaffTest.php - - message: '#^Instantiated class OpenEMR\\Tests\\E2e\\User\\Exception not found\.$#' - identifier: class.notFound - count: 1 - path: ../tests/Tests/E2e/BbCreateStaffTest.php - - message: '#^Method OpenEMR\\Tests\\Fixtures\\BaseFixtureManager\:\:installFixtures\(\) invoked with 2 parameters, 0 required\.$#' - identifier: arguments.count - count: 2 - path: ../tests/Tests/Fixtures/FacilityFixtureManager.php - - message: '#^Class OpenEMR\\ClinicalDecisionRules\\Interface\\ActionRouter constructor invoked with 3 parameters, 2 required\.$#' - identifier: arguments.count - count: 3 - path: ../tests/Tests/Unit/ClinicalDecisionRules/ActionRouterTest.php - - message: '#^Class OpenEMR\\ClinicalDecisionRules\\Interface\\ActionRouter constructor invoked with 3 parameters, 2 required\.$#' - identifier: arguments.count - count: 1 - path: ../tests/Tests/Unit/ClinicalDecisionRules/ControllerRouterTest.php - - message: '#^Trying to mock an undefined method Execute\(\) on class stdClass\.$#' - identifier: phpunit.mockMethod - count: 1 - path: ../tests/Tests/Unit/Common/Logging/EventAuditLoggerTest.php - - message: '#^Trying to mock an undefined method ExecuteNoLog\(\) on class stdClass\.$#' - identifier: phpunit.mockMethod - count: 1 - path: ../tests/Tests/Unit/Common/Logging/EventAuditLoggerTest.php - - message: '#^Trying to mock an undefined method FetchRow\(\) on class stdClass\.$#' - identifier: phpunit.mockMethod - count: 3 - path: ../tests/Tests/Unit/Common/Logging/EventAuditLoggerTest.php - - message: '#^Trying to mock an undefined method Insert_ID\(\) on class stdClass\.$#' - identifier: phpunit.mockMethod - count: 1 - path: ../tests/Tests/Unit/Common/Logging/EventAuditLoggerTest.php - - message: '#^Trying to mock an undefined method qstr\(\) on class stdClass\.$#' - identifier: phpunit.mockMethod - count: 1 - path: ../tests/Tests/Unit/Common/Logging/EventAuditLoggerTest.php - - message: '#^Variable \$provider_info on left side of \?\?\= always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/ModuleService.php - - message: '#^Variable \$patient_info on left side of \?\?\= always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php - - message: '#^Variable \$provider_info on left side of \?\?\= always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php - - message: '#^Variable \$relation on left side of \?\?\= always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php - - message: '#^Variable \$category on left side of \?\?\= is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/registry.inc.php - - message: '#^Variable \$addresses on left side of \?\?\= always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/templates/address_list_form.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../Documentation/help_files/sl_eob_help.php + - message: '#^Variable \$config might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../admin.php + - message: '#^Variable \$database_acl might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../admin.php + - message: '#^Variable \$database_patch might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../admin.php + - message: '#^Variable \$dbase might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../admin.php + - message: '#^Variable \$dbh might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../admin.php + - message: '#^Variable \$host might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../admin.php + - message: '#^Variable \$login might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../admin.php + - message: '#^Variable \$pass might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../admin.php + - message: '#^Variable \$port might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../admin.php + - message: '#^Variable \$v_acl might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../admin.php + - message: '#^Variable \$v_database might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../admin.php + - message: '#^Variable \$v_realpatch might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../admin.php + - message: '#^Variable \$authorID might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../ccr/createCCRActor.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 110 + path: ../ccr/createCCRActor.php + - message: '#^Variable \$e_Actors might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../ccr/createCCRActor.php + - message: '#^Variable \$oemrID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRActor.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 32 + path: ../ccr/createCCRAlerts.php + - message: '#^Variable \$e_Alerts might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRAlerts.php + - message: '#^Variable \$sourceID might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../ccr/createCCRAlerts.php + - message: '#^Variable \$authorID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRHeader.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 21 + path: ../ccr/createCCRHeader.php + - message: '#^Variable \$e_ccr might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../ccr/createCCRHeader.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 18 + path: ../ccr/createCCRImmunization.php + - message: '#^Variable \$e_Immunizations might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRImmunization.php + - message: '#^Variable \$sourceID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRImmunization.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 39 + path: ../ccr/createCCRMedication.php + - message: '#^Variable \$e_Medications might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRMedication.php + - message: '#^Variable \$sourceID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRMedication.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 32 + path: ../ccr/createCCRProblem.php + - message: '#^Variable \$e_Problems might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRProblem.php + - message: '#^Variable \$sourceID might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../ccr/createCCRProblem.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 33 + path: ../ccr/createCCRProcedure.php + - message: '#^Variable \$e_Procedures might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRProcedure.php + - message: '#^Variable \$sourceID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRProcedure.php + - message: '#^Variable \$authorID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRResult.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 39 + path: ../ccr/createCCRResult.php + - message: '#^Variable \$e_Results might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRResult.php + - message: '#^Variable \$extension might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/transmitCCD.php + - message: '#^Variable \$text_out might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../ccr/transmitCCD.php + - message: '#^Variable \$duplicates on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../contrib/util/ccda_import/import_ccda.php + - message: '#^Variable \$policies_by_payer_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../contrib/util/chart_review_pids.php + - message: '#^Variable \$sqlconf might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../contrib/util/de_identification_upgrade.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../contrib/util/de_identification_upgrade.php + - message: '#^Variable \$dupecount might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../contrib/util/dupecheck/index.php + - message: '#^Variable \$dupelist might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../contrib/util/dupecheck/index.php + - message: '#^Variable \$sqlconf might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../contrib/util/dupecheck/mergerecords.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../contrib/util/dupscore.cli.php + - message: '#^Variable \$d might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../controllers/C_Document.class.php + - message: '#^Variable \$error might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../controllers/C_Document.class.php + - message: '#^Variable \$filetext might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../controllers/C_Document.class.php + - message: '#^Variable \$from_pathname might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../controllers/C_Document.class.php + - message: '#^Variable \$messages might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../controllers/C_Document.class.php + - message: '#^Variable \$temp_couchdb_url might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../controllers/C_Document.class.php + - message: '#^Variable \$description on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../controllers/C_DocumentCategory.class.php + - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' + identifier: staticMethod.notFound + count: 1 + path: ../controllers/C_Prescription.class.php + - message: '#^Variable \$p might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../controllers/C_Prescription.class.php + - message: '#^Variable \$prescription might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../controllers/C_Prescription.class.php + - message: '#^Variable \$files might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/ajax_download.php + - message: '#^Variable \$qrda_file_path might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/ajax_download.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/ajax_download.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/chart_tracker.php + - message: '#^Variable \$counter might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../custom/code_types.inc.php + - message: '#^Variable \$query might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../custom/code_types.inc.php + - message: '#^Variable \$sql_bind_array might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/code_types.inc.php + - message: '#^Variable \$cqmCodes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/download_qrda.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../custom/download_qrda.php + - message: '#^Variable \$facility_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$facility_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_1_denom might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_1_exclude might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_1_ipp might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_1_numer1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_1_numer2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_1_numer3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_2_denom might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_2_exclude might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_2_ipp might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_2_numer1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_2_numer2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_2_numer3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$userRow might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../custom/export_xml.php + - message: '#^Variable \$alertmsg might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/import_xml.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../custom/import_xml.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/import_xml.php + - message: '#^Variable \$patients might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../custom/qrda_category1.inc.php + - message: '#^Variable \$facilResRow might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../custom/qrda_category1_functions.php + - message: '#^Variable \$gender might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/qrda_category1_functions.php + - message: '#^Variable \$patFname might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/qrda_category1_functions.php + - message: '#^Variable \$patLname might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/qrda_category1_functions.php + - message: '#^Variable \$patientRow might not be defined\.$#' + identifier: variable.undefined + count: 12 + path: ../custom/qrda_category1_functions.php + - message: '#^Variable \$tdTitle might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/qrda_category1_functions.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/zutil.cli.doc_import.php + - message: '#^Access to an undefined property Cache_Lite\:\:\$_memoryCachingState\.$#' + identifier: property.notFound + count: 1 + path: ../gacl/Cache_Lite/Lite.php + - message: '#^Function set_magic_quotes_runtime not found\.$#' + identifier: function.notFound + count: 2 + path: ../gacl/Cache_Lite/Lite.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/about.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../gacl/admin/about.php + - message: '#^Variable \$i might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/acl_admin.php + - message: '#^Variable \$options_acl_sections might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_admin.php + - message: '#^Variable \$options_aco_sections might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_admin.php + - message: '#^Variable \$options_aro_sections might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_admin.php + - message: '#^Variable \$options_axo_sections might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_admin.php + - message: '#^Variable \$selected_aro_array might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/acl_admin.php + - message: '#^Variable \$selected_axo_array might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/acl_admin.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../gacl/admin/acl_debug.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 24 + path: ../gacl/admin/acl_debug.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 17 + path: ../gacl/admin/acl_list.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 29 + path: ../gacl/admin/acl_list.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 32 + path: ../gacl/admin/acl_list.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/acl_test.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../gacl/admin/acl_test.php + - message: '#^Variable \$acls might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test2.php + - message: '#^Variable \$avg_acl_check_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test2.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test2.php + - message: '#^Variable \$gacl might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test2.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../gacl/admin/acl_test2.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../gacl/admin/acl_test2.php + - message: '#^Variable \$tmp_aco_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test2.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test3.php + - message: '#^Variable \$gacl might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test3.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../gacl/admin/acl_test3.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../gacl/admin/acl_test3.php + - message: '#^Variable \$tmp_aco_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test3.php + - message: '#^Variable \$tmp_aco_section_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test3.php + - message: '#^Variable \$total_acl_check_time might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/acl_test3.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../gacl/admin/assign_group.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 22 + path: ../gacl/admin/assign_group.php + - message: '#^Variable \$i might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/assign_group.php + - message: '#^Variable \$selected_object_array might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/assign_group.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 20 + path: ../gacl/admin/assign_group.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/edit_group.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 17 + path: ../gacl/admin/edit_group.php + - message: '#^Variable \$retry might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/edit_group.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 13 + path: ../gacl/admin/edit_group.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/edit_object_sections.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 16 + path: ../gacl/admin/edit_object_sections.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 12 + path: ../gacl/admin/edit_object_sections.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../gacl/admin/edit_objects.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 17 + path: ../gacl/admin/edit_objects.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 15 + path: ../gacl/admin/edit_objects.php + - message: '#^Variable \$gacl_options might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/gacl_admin.inc.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/group_admin.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../gacl/admin/group_admin.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../gacl/admin/group_admin.php + - message: '#^Undefined variable\: \$db$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/object_search.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../gacl/admin/object_search.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../gacl/admin/object_search.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 14 + path: ../gacl/admin/object_search.php + - message: '#^Access to an undefined property Profiler\:\:\$output_enabled\.$#' + identifier: property.notFound + count: 2 + path: ../gacl/profiler.inc.php + - message: '#^Access to an undefined property Profiler\:\:\$trace_enabled\.$#' + identifier: property.notFound + count: 2 + path: ../gacl/profiler.inc.php + - message: '#^Variable \$config might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../index.php + - message: '#^Variable \$m_error might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batchEmail.php + - message: '#^Variable \$m_error_count might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/batchcom/batchEmail.php + - message: '#^Variable \$res might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batchEmail.php + - message: '#^Variable \$res might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batchPhoneList.php + - message: '#^Variable \$check_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batch_phone_notification.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batch_phone_notification.php + - message: '#^Variable \$ssql might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batch_phone_notification.php + - message: '#^Variable \$results_log might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batch_reminders.php + - message: '#^Variable \$send_rem_log might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/batchcom/batch_reminders.php + - message: '#^Variable \$file might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/batchcom/batchcom.inc.php + - message: '#^Variable \$flag_on might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batchcom.inc.php + - message: '#^Variable \$line might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batchcom.inc.php + - message: '#^Variable \$choices might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batchcom.php + - message: '#^Variable \$form_err might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../interface/batchcom/batchcom.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batchcom.php + - message: '#^Variable \$email_sender might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/emailnotification.php + - message: '#^Variable \$email_subject might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/emailnotification.php + - message: '#^Variable \$form_err might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/batchcom/emailnotification.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/emailnotification.php + - message: '#^Variable \$notification_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/emailnotification.php + - message: '#^Variable \$provider_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/emailnotification.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/emailnotification.php + - message: '#^Variable \$SMS_gateway_apikey might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$SMS_gateway_password might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$SMS_gateway_username might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$Send_Email_Before_Hours might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$Send_SMS_Before_Hours might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$SettingsId might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$form_err might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$form_err might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/batchcom/smsnotification.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/smsnotification.php + - message: '#^Variable \$notification_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/smsnotification.php + - message: '#^Variable \$provider_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/smsnotification.php + - message: '#^Variable \$sms_gateway_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/smsnotification.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/smsnotification.php + - message: '#^Variable \$CheckBoxBilling might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$default_x12_partner might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$divnos on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$effective_insurances on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$enc_billing_note might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$left_ubmargin might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$top_ubmargin might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$ub04_support might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/billing_tracker.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/billing/edi_270.php + - message: '#^Variable \$_FILES in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/billing/edi_271.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/edi_271.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/billing/edi_271.php + - message: '#^Variable \$html_str might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edih_main.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 16 + path: ../interface/billing/edih_main.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edih_view.php + - message: '#^Variable \$AccountCode might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$AdjustString might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$CountIndexAbove might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$CountIndexBelow might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$QueryPart might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$Table might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$TypeCode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$bgcolor might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/era_payments.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/era_payments.php + - message: '#^Variable \$claim_file_dir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/get_claim_file.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/indigent_patients_report.php + - message: '#^Variable \$CountIndexBelow might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/new_payment.php + - message: '#^Variable \$PaymentType might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/new_payment.php + - message: '#^Variable \$QueryPart might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/new_payment.php + - message: '#^Variable \$TypeCode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/new_payment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/new_payment.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/new_payment.php + - message: '#^Variable \$PayTotal might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/payment_master.inc.php + - message: '#^Variable \$PostToDate might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/payment_master.inc.php + - message: '#^Variable \$global_amount might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/payment_master.inc.php + - message: '#^Variable \$payment_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/payment_master.inc.php + - message: '#^Variable \$screen might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/payment_master.inc.php + - message: '#^Variable \$bgcolor might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/payment_pat_sel.inc.php + - message: '#^Variable \$hidden_patient_code might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/billing/payment_pat_sel.inc.php + - message: '#^Variable \$employer_data_array might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_billing_report.php + - message: '#^Variable \$insurance_data_array might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_billing_report.php + - message: '#^Variable \$patient_data_array might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_billing_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_billing_report.php + - message: '#^Variable \$catch_provider might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$catch_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$fuser_final_list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$gtotal_fee might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$gtotal_insadj might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$gtotal_inspay might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$gtotal_insref might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$gtotal_patadj might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$gtotal_patpay might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$gtotal_patref might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$line_total might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$line_total_pay might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_inspay might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_inspay might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$provider_info might not be defined\.$#' + identifier: variable.undefined + count: 19 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$query_part_day might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$run_provider might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$totals_only might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$user_info might not be defined\.$#' + identifier: variable.undefined + count: 17 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$catch_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$gtotal_fee might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$gtotal_insadj might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$gtotal_inspay might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$gtotal_patadj might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$gtotal_patpay might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$query_part_day might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$totals_only might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us0_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us0_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us0_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us0_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us0_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us0_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us10_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us10_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us10_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us10_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us10_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us10_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us11_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us11_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us11_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us11_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us11_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us11_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us12_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us12_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us12_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us12_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us12_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us12_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us13_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us13_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us13_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us13_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us13_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us13_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us14_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us14_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us14_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us14_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us14_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us14_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us15_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us15_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us15_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us15_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us15_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us15_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us16_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us16_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us16_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us16_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us16_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us16_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us17_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us17_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us17_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us17_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us17_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us17_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us18_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us18_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us18_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us18_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us18_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us18_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us19_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us19_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us19_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us19_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us19_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us19_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us1_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us1_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us1_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us1_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us1_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us1_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us2_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us2_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us2_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us2_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us2_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us2_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us3_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us3_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us3_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us3_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us3_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us3_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us4_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us4_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us4_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us4_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us4_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us4_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us5_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us5_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us5_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us5_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us5_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us5_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us6_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us6_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us6_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us6_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us6_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us6_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us7_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us7_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us7_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us7_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us7_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us7_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us8_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us8_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us8_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us8_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us8_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us8_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us9_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us9_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us9_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us9_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us9_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us9_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$user_info might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$catch_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$gtotal_fee might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$gtotal_insadj might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$gtotal_inspay might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$gtotal_patadj might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$gtotal_patpay might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$line_total might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$line_total_pay might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$query_part_day might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$totals_only might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us0_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us0_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us0_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us0_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us0_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us0_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us10_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us10_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us10_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us10_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us10_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us10_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us11_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us11_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us11_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us11_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us11_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us11_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us12_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us12_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us12_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us12_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us12_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us12_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us13_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us13_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us13_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us13_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us13_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us13_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us14_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us14_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us14_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us14_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us14_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us14_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us15_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us15_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us15_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us15_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us15_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us15_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us16_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us16_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us16_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us16_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us16_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us16_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us17_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us17_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us17_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us17_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us17_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us17_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us18_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us18_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us18_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us18_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us18_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us18_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us19_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us19_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us19_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us19_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us19_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us19_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us1_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us1_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us1_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us1_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us1_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us1_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us2_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us2_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us2_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us2_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us2_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us2_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us3_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us3_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us3_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us3_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us3_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us3_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us4_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us4_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us4_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us4_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us4_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us4_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us5_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us5_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us5_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us5_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us5_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us5_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us6_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us6_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us6_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us6_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us6_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us6_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us7_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us7_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us7_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us7_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us7_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us7_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us8_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us8_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us8_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us8_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us8_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us8_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us9_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us9_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us9_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us9_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us9_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us9_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$user_info might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$PaymentDateString might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/search_payments.php + - message: '#^Variable \$ResultSearch might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/search_payments.php + - message: '#^Variable \$StringSessionId might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/search_payments.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/search_payments.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/billing/sl_eob_invoice.php + - message: '#^Variable \$tmpadj on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/billing/sl_eob_invoice.php + - message: '#^Variable \$STMT_PRINT_CMD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/sl_eob_search.php + - message: '#^Variable \$STMT_TEMP_FILE might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/billing/sl_eob_search.php + - message: '#^Variable \$countline might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/sl_eob_search.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/billing/sl_eob_search.php + - message: '#^Variable \$docname might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/sl_receipts_report.php + - message: '#^Variable \$docnameleft might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/sl_receipts_report.php + - message: '#^Variable \$doctotal1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/sl_receipts_report.php + - message: '#^Variable \$doctotal2 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/sl_receipts_report.php + - message: '#^Variable \$patient_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/sl_receipts_report.php + - message: '#^Variable \$thedate might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/billing/sl_receipts_report.php + - message: '#^Variable \$revcod might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/ub04_dispose.php + - message: '#^Variable \$revcode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/ub04_dispose.php + - message: '#^Variable \$revcode2 might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/billing/ub04_dispose.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/ub04_form.php + - message: '#^Variable \$ub04id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/ub04_form.php + - message: '#^Variable \$resultpd might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/ub04_helpers.php + - message: '#^Variable \$optionsLabel in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/clickmap/C_AbstractClickmap.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/code_systems/standard_tables_manage.php + - message: '#^Variable \$deIdentificationStatus might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/de_identification_forms/de_identification_screen1.php + - message: '#^Variable \$no_of_items might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/de_identification_screen1.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/de_identification_forms/de_identification_screen1.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/de_identification_forms/de_identification_screen1.php + - message: '#^Variable \$viewmode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/de_identification_screen1.php + - message: '#^Variable \$deIdentificationStatus might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/de_identification_screen2.php + - message: '#^Variable \$filename might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/de_identification_forms/de_identification_screen2.php + - message: '#^Variable \$include_tables might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/de_identification_forms/de_identification_screen2.php + - message: '#^Variable \$sqlconf might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/de_identification_forms/de_identification_screen2.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/de_identification_forms/de_identification_screen2.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/find_code_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/find_code_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/find_drug_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/find_immunization_popup.php + - message: '#^Variable \$no_of_items might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/re_identification_input_screen.php + - message: '#^Variable \$reIdentificationStatus might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/de_identification_forms/re_identification_input_screen.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/de_identification_forms/re_identification_input_screen.php + - message: '#^Variable \$no_of_items might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/re_identification_op_single_patient.php + - message: '#^Variable \$reIdCode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/re_identification_op_single_patient.php + - message: '#^Variable \$sqlconf might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/de_identification_forms/re_identification_op_single_patient.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/de_identification_forms/re_identification_op_single_patient.php + - message: '#^Variable \$status might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/re_identification_op_single_patient.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/drugs/add_edit_drug.php + - message: '#^Variable \$tres might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/drugs/add_edit_drug.php + - message: '#^Variable \$row might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/drugs/add_edit_lot.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/drugs/add_edit_lot.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/drugs/dispense_drug.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/drugs/dispense_drug.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/drugs/dispense_drug.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/drugs/drug_inventory.php + - message: '#^Access to an undefined property eRxPage\:\:\$prescriptions\.$#' + identifier: property.notFound + count: 1 + path: ../interface/eRxPage.php + - message: '#^Undefined variable\: \$encounter$#' + identifier: variable.undefined + count: 1 + path: ../interface/eRxSOAP.php + - message: '#^Undefined variable\: \$jasonzip$#' + identifier: variable.undefined + count: 2 + path: ../interface/eRx_xml.php + - message: '#^Undefined variable\: \$prec$#' + identifier: variable.undefined + count: 1 + path: ../interface/eRx_xml.php + - message: '#^Variable \$jasonzip might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/eRx_xml.php + - message: '#^Variable \$num might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/eRx_xml.php + - message: '#^Variable \$txt might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/eRx_xml.php + - message: '#^Variable \$zip4 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/eRx_xml.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/easipro/pro.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/easipro/pro.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/easipro/pro.php + - message: '#^Variable \$arr_files_php might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/expand_contract_js.php + - message: '#^Variable \$catid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/fax/fax_dispatch.php + - message: '#^Variable \$erow might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/fax/fax_dispatch.php + - message: '#^Variable \$newid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/fax/fax_dispatch.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/fax/fax_dispatch.php + - message: '#^Variable \$tmp_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/fax/fax_dispatch.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/fax/fax_dispatch.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/fax/fax_dispatch.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/ajax_save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/CAMOS/ajax_save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/CAMOS/ajax_save.php + - message: '#^Undefined variable\: \$encounter$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/content_parser.php + - message: '#^Variable \$justify_trimmed might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/content_parser.php + - message: '#^Variable \$code_list in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$days_ago might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$last_encounter_id might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$subtablename might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$tablename might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$tmp in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$to_alter_column might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$to_alter_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$to_alter_table might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$to_delete_from_subtable might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$to_delete_from_table might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$to_delete_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/CAMOS/notegen.php + - message: '#^Variable \$name might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/CAMOS/notegen.php + - message: '#^Variable \$user_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/CAMOS/notegen.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/print.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/view.php + - message: '#^Function cms_field_to_lbf not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/forms/LBF/new.php + - message: '#^Function cms_portal_call not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/forms/LBF/new.php + - message: '#^Undefined variable\: \$BS_COL_CLASS$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$BS_COL_CLASS might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$date_init might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$enrow might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$fs might not be defined\.$#' + identifier: variable.undefined + count: 15 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$ignoreAuth_onsite_portal might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 18 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$svccount might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/LBF/printable.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/LBF/printable.php + - message: '#^Variable \$pdf might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/LBF/printable.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/LBF/printable.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/LBF/printable.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/LBF/printable.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/LBF/printable.php + - message: '#^Variable \$disabled might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/aftercare_plan/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/aftercare_plan/new.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/aftercare_plan/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/aftercare_plan/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/aftercare_plan/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/aftercare_plan/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/aftercare_plan/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/aftercare_plan/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/aftercare_plan/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ankleinjury/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ankleinjury/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ankleinjury/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ankleinjury/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/ankleinjury/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/ankleinjury/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ankleinjury/view.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ankleinjury/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/bronchitis/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/bronchitis/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/bronchitis/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/bronchitis/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/bronchitis/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/bronchitis/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/bronchitis/view.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/bronchitis/view.php + - message: '#^Variable \$all might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/care_plan/new.php + - message: '#^Variable \$care_plan_type might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/care_plan/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/care_plan/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/care_plan/new.php + - message: '#^Variable \$data might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/care_plan/report.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/care_plan/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/care_plan/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/care_plan/save.php + - message: '#^Variable \$key might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/care_plan/templates/careplan_actions.php + - message: '#^Variable \$key might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/care_plan/templates/careplan_reason_row.php + - message: '#^Variable \$reasonCodeStatii might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/care_plan/templates/careplan_reason_row.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/clinic_note/new.php + - message: '#^Variable \$top_bg_line might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/new.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/view.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/view.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/clinic_note/view.php + - message: '#^Variable \$top_bg_line might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/view.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinical_instructions/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/clinical_instructions/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinical_instructions/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/clinical_instructions/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/clinical_instructions/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinical_instructions/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/clinical_notes/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinical_notes/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/clinical_notes/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/clinical_notes/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/dictation/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/dictation/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/dictation/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/dictation/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/dictation/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/dictation/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/dictation/view.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/dictation/view.php + - message: '#^Variable \$BPDN might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$CTLODQUANTITY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$CTLOSQUANTITY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$CTL_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$LENS_MATERIAL might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$LENS_TREATMENTS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODADD2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODCYL might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODHBASE might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODHPD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODMIDADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODMPDN might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODSLABOFF might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODVBASE might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODVERTEXDIST might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODVPD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSADD2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSCYL might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSHBASE might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSHPD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSMIDADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSMPDN might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSSLABOFF might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSVBASE might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSVERTEXDIST might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSVPD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$REFTYPE might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$RXTYPE might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$Single might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$detailed might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$form_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$i might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$insert_this_id might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$HELLO might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ISSUE_CLASSIFICATIONS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSCOMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSCV might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSDERM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSENDOCRINE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSGENERAL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSGI might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSGU might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSHEENT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSIMMUNO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSMUSCULO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSNEURO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSPSYCH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSPULM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$result2 might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$subtype might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$type_index might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/help.php + - message: '#^Variable \$ANTSEG might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/js/eye_base.php + - message: '#^Variable \$EXT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/js/eye_base.php + - message: '#^Variable \$NEURO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/js/eye_base.php + - message: '#^Variable \$RETINA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/js/eye_base.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/js/eye_base.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/new.php + - message: '#^Function build_PMSFH invoked with 0 parameters, 1 required\.$#' + identifier: arguments.count + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Undefined variable\: \$header1$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Undefined variable\: \$k$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Undefined variable\: \$old_OCTs$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Undefined variable\: \$old_VFs$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT10CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT10CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT10SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT10SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT11CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT11CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT11SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT11SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT1CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT1CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT1SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT1SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT2CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT2CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT2SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT2SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT3CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT3CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT3SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT3SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT4CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT4CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT4SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT4SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT5CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT5CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT5SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT5SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT6CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT6CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT6SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT6SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT7CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT7CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT7SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT7SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT8CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT8CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT8SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT8SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT9CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT9CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT9SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT9SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ANTSEG_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARODSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$AROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$AROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$AROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$AROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$AROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$AROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ATROPINE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$BPDD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$BPDN on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CACCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CACCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$COMMENTS on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CONTRASTODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRODSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLODBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLODDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLODSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLOSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLOSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLOSBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLOSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLOSDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLOSSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLSUPPLIEROD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLSUPPLIEROS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CYCLOGYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CYCLOMYDRIL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$DACCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$DACCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$DIL_MEDS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$DM_code might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$DX might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$EXT_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$FAILED_drug might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$FAILED_drugs might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$GLAREODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$GLAREOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$GONIO_values might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$HERTELBASE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LADNEXA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LBROW might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LCAROTID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LCNV might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LCNVII might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LENS_MATERIAL on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LENS_TREATMENTS on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LIODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LIOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LLF might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LLL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LMCT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LMRD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LTEMPART might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LUL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LVFISSURE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITYNORMAL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LI might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LLIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LLSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LRIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LRSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RI might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RLIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RLSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RRIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RRSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRODSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$NEARODVA on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$NEAROSVA on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$NEO25 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$NEURO_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$NPC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OCT_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OCT_values might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODAC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODACD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODADD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODAXIALLENGTH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODAXIS on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODCMT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODCOINS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODCOLOR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODCONJ might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODCORNEA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODCUP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODCYL on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODDISC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODECL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODGONIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODHBASE on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODHERTEL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODHPD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODIOP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODIOPTARGET might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODIOPTARGETS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODIOPTARGET_values might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODIRIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODK1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODK2 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODK2AXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODKTHICKNESS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODLENS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODLT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODMACULA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODMIDADD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODMPDD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODMPDN on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODNPA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODPERIPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODREDDESAT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODSCHIRMER1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODSCHIRMER2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODSLABOFF on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODSPH on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODTBUT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODVA on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODVBASE on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODVERTEXDIST on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODVESSELS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODVITREOUS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODVPD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODW2W might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OD_methods might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OD_time_values might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OD_values might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSAC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSACD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSADD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSAXIALLENGTH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSAXIS on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSCMT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSCOINS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSCOLOR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSCONJ might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSCORNEA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSCUP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSCYL on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSDISC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSECL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSGONIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSHBASE on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSHERTEL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSHPD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSIOPTARGET might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSIOPTARGETS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSIOPTARGET_values might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSIRIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSK1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSK2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSK2AXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSKTHICKNESS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSLENS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSLT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSMACULA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSMIDADD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSMPDD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSMPDN on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSNPA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSPERIPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSREDDESAT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSSCHIRMER1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSSCHIRMER2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSSLABOFF on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSSPH on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSTBUT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSVA on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSVBASE on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSVERTEXDIST on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSVESSELS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSVITREOUS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSVPD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSW2W might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OS_methods might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OS_time_values might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OS_values might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$PAMODBA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$PAMODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$PAMOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$PHODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$PHOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$PMFSH on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RADNEXA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RBROW might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RCAROTID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RCNV might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RCNVII might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RETINA_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RLF might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RLL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RMCT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RMRD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RTEMPART might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RUL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RVFISSURE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RX_TYPE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RX_TYPE on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 5 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$STEREOPSIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$TROPICAMIDE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$VABINOC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$VERTFUSAMPS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$VF_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$VF_values might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$VISITS_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$action might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$all might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$categories might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$children_names might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$clinical_terms might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$code might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$code_found in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$count might not be defined\.$#' + identifier: variable.undefined + count: 16 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$current_OCT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$current_VF might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$display_Add might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$display_PMSFH might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$encounter_date on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$fullscreen on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$gonios might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$here might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$hideme might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$hit_RVO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$id on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$item on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$my_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$number_rows on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$output might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$parent_name in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$parent_name on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$pend might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$sub_term might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$time might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$time_OU might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$total_PMSFH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$zones might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$encounter_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/taskman_functions.php + - message: '#^Variable \$form_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/taskman_functions.php + - message: '#^Variable \$sent_date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/taskman_functions.php + - message: '#^Undefined variable\: \$id$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Undefined variable\: \$table_name$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT10CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT10CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT10SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT10SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT11CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT11CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT11SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT11SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT1CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT1CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT1SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT1SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT2CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT2CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT2SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT2SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT3CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT3CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT3SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT3SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT4CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT4CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT4SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT4SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT5CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT5CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT5SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT5SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT6CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT6CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT6SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT6SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT7CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT7CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT7SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT7SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT8CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT8CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT8SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT8SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT9CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT9CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT9SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT9SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AMSLEROD might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AMSLEROS might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ANTSEG_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARODSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ASSOCIATED1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ASSOCIATED2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ASSOCIATED3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CACCDIST might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CACCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CC1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CC2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CC3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CHRONIC1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CHRONIC2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CHRONIC3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CONTEXT1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CONTEXT2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CONTEXT3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CONTRASTODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CONTRASTOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRCOMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRODSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLODBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLODDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLODSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLOSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLOSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLOSBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLOSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLOSDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLOSSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLOSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLSUPPLIEROD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLSUPPLIEROS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DACCDIST might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DACCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DIL_MEDS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DIMODPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DIMODPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DIMOSPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DIMOSPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DURATION1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DURATION2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DURATION3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$EXT_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$GLAREODVA might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$GLAREOSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$HERTELBASE might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$HPI1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$HPI2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$HPI3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$IOPTIME might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LADNEXA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LBROW might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LCAROTID might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LCNV might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LCNVII might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LIODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LIOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LLF might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LLL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LMCT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LMRD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LOCATION1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LOCATION2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LOCATION3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LTEMPART might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LUL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LVFISSURE might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MODIFY1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MODIFY2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MODIFY3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITYNORMAL might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_L0 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_LI might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_LL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_LLIO might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_LLSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_LR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_LRSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_LS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_R0 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RI might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RLIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RLSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RRIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RRSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRODSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$NEURO_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$NPC might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODAC might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODACD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODAPD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODAXIALLENGTH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODCMT might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODCOINS might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODCOLOR might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODCONJ might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODCORNEA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODCUP might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODDISC might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODECL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODGONIO might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODHERTEL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODIOPAP might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODIOPFTN might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODIOPTPN might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODIRIS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODK1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODK2 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODK2AXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODKTHICKNESS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODLENS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODLT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODMACULA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODNEARVA_1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODNPA might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODNPC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODPERIPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODPUPILREACTIVITY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODREDDESAT might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODSCHIRMER1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODSCHIRMER2 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODTBUT might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODVA_1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODVESSELS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODVF1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODVF2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODVF3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODVF4 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODVITREOUS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODW2W might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSAC might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSACD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSAPD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSAXIALLENGTH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSCMT might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSCOINS might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSCOLOR might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSCONJ might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSCORNEA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSCUP might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSDISC might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSECL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSGONIO might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSHERTEL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSIOPAP might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSIOPFTN might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSIOPTPN might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSIRIS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSK1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSK2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSK2AXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSKTHICKNESS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSLENS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSLT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSMACULA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSNEARVA_1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSNPA might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSNPC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSPERIPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSPUPILREACTIVITY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSREDDESAT might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSSCHIRMER1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSSCHIRMER2 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSTBUT might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSVA_1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSVESSELS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSVF1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSVF2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSVF3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSVF4 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSVITREOUS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSW2W might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$PAMODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$PAMOSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$PHODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$PHOSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$PLAN_results in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$PUPIL_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$PUPIL_NORMAL might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$QUALITY1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$QUALITY2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$QUALITY3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RADNEXA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RBROW might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RCAROTID might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RCNV might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RCNVII might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RETINA_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RLF might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RLL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RMCT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RMRD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RTEMPART might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RUL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RVFISSURE might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RX_TYPE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$SCNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$SCNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$SCODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$SCOSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$SEVERITY1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$SEVERITY2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$SEVERITY3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$STEREOPSIS might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$TIMING1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$TIMING2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$TIMING3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$VERTFUSAMPS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$bad on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$display_Add might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$encounter_date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$pend might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DOCS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$N might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$PMSFH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$category_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$dups might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$form_encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$form_injury_part might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$form_injury_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$form_return might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$ndc_info might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$new_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$printable might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$text_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$visit_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/eye_mag/taskman.php + - message: '#^Result of function display_GlaucomaFlowSheet \(void\) is used\.$#' + identifier: function.void + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Result of function display_VisualAcuities \(void\) is used\.$#' + identifier: function.void + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT10CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT10CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT10SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT10SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT11CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT11CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT11SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT11SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT1CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT1CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT1SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT1SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT2CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT2CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT2SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT2SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT3CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT3CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT3SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT3SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT4CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT4CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT4SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT4SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT5CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT5CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT5SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT5SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT6CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT6CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT6SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT6SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT7CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT7CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT7SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT7SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT8CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT8CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT8SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT8SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT9CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT9CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT9SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT9SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AMSLEROD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AMSLEROS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ANTSEG_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARODSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ASSOCIATED1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ASSOCIATED2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ASSOCIATED3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ATROPINE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$BALANCED might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$BINOCVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CACCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CACCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CC1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CC2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CC3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CHRONIC1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CHRONIC2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CHRONIC3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CONTEXT1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CONTEXT2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CONTEXT3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CRCOMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CRODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CRODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CRODSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CRODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLBRAND_list_OD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLBRAND_list_OS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLODBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLODDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLODSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLOSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLOSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLOSBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLOSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLOSDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLOSSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLOSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLSUPPLIEROD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLSUPPLIEROS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTL_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CYCLOGYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CYCLOMYDRIL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DACCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DACCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DIL_MEDS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DIL_RISKS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DIMODPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DIMODPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DIMOSPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DIMOSPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DURATION1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DURATION2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DURATION3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$EXT_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$GLAREODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$GLAREOSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$HERTELBASE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$HPI1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$HPI2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$HPI3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$IMP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$IOPTIME might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LADNEXA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LBROW might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LCAROTID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LCNV might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LCNVII might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LIODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LIOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LLF might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LLL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LMCT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LMRD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LOCATION1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LOCATION2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LOCATION3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LOCKED might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LOCKED on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LOCKEDBY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LOCKEDBY on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LTEMPART might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LUL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LVFISSURE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MODIFY1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MODIFY2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MODIFY3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITYNORMAL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LI might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LL might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LLIO might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LLSO might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LR might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LRIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LRSO might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RI might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RL might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RLIO might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RLSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RR might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RRIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RRSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRODSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$NEO25 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$NEURO_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$NPC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODAC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODACD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODAPD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODAXIALLENGTH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODCMT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODCOINS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODCOLOR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODCONJ might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODCORNEA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODCUP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODDISC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODGONIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODHERTEL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODIOPAP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODIOPFTN might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODIOPPOST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODIOPTPN might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODIRIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODK1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODK2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODK2AXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODKTHICKNESS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODLENS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODLT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODMACULA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODNPA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODPERIPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODPUPILREACTIVITY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODREDDESAT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODSCHIRMER1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODSCHIRMER2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODTBUT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODVESSELS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODVF1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODVF2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODVF3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODVF4 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODVITREOUS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODW2W might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSAC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSACD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSAPD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSAXIALLENGTH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSCMT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSCOINS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSCOLOR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSCONJ might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSCORNEA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSCUP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSDISC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSGONIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSHERTEL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSIOPAP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSIOPFTN might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSIOPPOST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSIOPTPN might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSIRIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSK1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSK2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSK2AXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSKTHICKNESS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSLENS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSLT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSMACULA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSNPA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSPERIPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSPUPILREACTIVITY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSREDDESAT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSSCHIRMER1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSSCHIRMER2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSTBUT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSVESSELS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSVF1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSVF2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSVF3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSVF4 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSVITREOUS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSW2W might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$PAMODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$PAMOSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$PHODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$PHOSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$PUPIL_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$PUPIL_NORMAL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$QUALITY1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$QUALITY2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$QUALITY3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RADNEXA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RBROW might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RCAROTID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RCNV might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RCNVII might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RETINA_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RLF might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RLL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RMCT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RMRD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RTEMPART might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RUL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RVFISSURE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$SCNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$SCNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$SCODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$SCOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$SEVERITY1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$SEVERITY2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$SEVERITY3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$STEREOPSIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$TIMING1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$TIMING2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$TIMING3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$TROPICAMIDE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$VERTFUSAMPS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$WETTYPE might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$alert might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$confused might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 28 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$encounter_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$found on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$oriented might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$provider_id might not be defined\.$#' + identifier: variable.undefined + count: 12 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$setting_SDRETINA on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$uniqueID on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/code_choice/initialize_code_choice.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/contraception_products/initialize_contraception_products.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/contraception_products/initialize_contraception_products.php + - message: '#^Variable \$cleave_opt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$fee in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$ndc_applies might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$revenue_code might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$entry might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/code_check.php + - message: '#^Variable \$database might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php + - message: '#^Variable \$issues might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php + - message: '#^Variable \$json_diags might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php + - message: '#^Variable \$json_procs might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php + - message: '#^Variable \$req_encounter might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php + - message: '#^Variable \$req_pid might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php + - message: '#^Variable \$task might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/fee_sheet_classes.php + - message: '#^Variable \$billing_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php + - message: '#^Variable \$database might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php + - message: '#^Variable \$json_diags might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php + - message: '#^Variable \$req_encounter might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php + - message: '#^Variable \$req_pid might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php + - message: '#^Variable \$task might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/review/fee_sheet_queries.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/fee_sheet_search_queries.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/initialize_review.php + - message: '#^Variable \$isBilled might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/initialize_review.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/initialize_review.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/fee_sheet/review/initialize_review.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/views/review.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/functional_cognitive_status/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/functional_cognitive_status/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/functional_cognitive_status/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/functional_cognitive_status/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/functional_cognitive_status/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/gad7/gad7.inc.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_default might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_extremely might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_form_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_form_title might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_more might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_nearly might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_nosave_confirm might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_nosave_exit might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_not might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_q8 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_q8_2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_several might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_somewhat might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_very might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$data might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/report.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/gad7/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/gad7/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_afraid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_annoyed might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_control_worry might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_default might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_extremely might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_form_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_form_title might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_more might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_nearly might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_nervous might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_nosave_confirm might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_nosave_exit might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_not might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_q8 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_q8_2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_relax might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_restless might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_several might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_somewhat might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_very might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_worry might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/group_attendance/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/group_attendance/new.php + - message: '#^Variable \$therapy_group might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/group_attendance/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/group_attendance/save.php + - message: '#^Variable \$therapy_group might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/group_attendance/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/group_attendance/save.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/misc_billing_options/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/misc_billing_options/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/misc_billing_options/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/misc_billing_options/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/misc_billing_options/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/misc_billing_options/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/misc_billing_options/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/misc_billing_options/save.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/misc_billing_options/save.php + - message: '#^Variable \$disabled might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$posCode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 14 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$therapyGroupCategories might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$therapy_group might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$viewmode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/newGroupEncounter/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/view.php + - message: '#^Variable \$body_javascript on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php + - message: '#^Variable \$override in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php + - message: '#^Variable \$rootdir on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php + - message: '#^Variable \$userauthorized on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/newpatient/common.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newpatient/common.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/newpatient/common.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newpatient/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/newpatient/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/newpatient/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/newpatient/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/newpatient/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newpatient/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/note/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/note/new.php + - message: '#^Variable \$obj might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/note/print.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/note/print.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/note/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/note/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/note/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/note/save.php + - message: '#^Variable \$obj might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/note/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/note/view.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/note/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_default might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_extremely might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_form_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_form_title might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_more might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_nearly might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_nosave_confirm might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_not might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_q10 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_q10_2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_several might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_somewhat might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_very might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$viewmode might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/phq9/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/phq9/save.php + - message: '#^Variable \$issue might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/physical_exam/edit_diagnoses.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/physical_exam/new.php + - message: '#^Variable \$pelines might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/physical_exam/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/physical_exam/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/physical_exam/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/physical_exam/new.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/physical_exam/new.php + - message: '#^Constructor of class FormPriorAuth has an unused parameter \$_prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../interface/forms/prior_auth/FormPriorAuth.class.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/prior_auth/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/prior_auth/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/prior_auth/view.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/procedure_order/common.php + - message: '#^Variable \$isDorn might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/procedure_order/common.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../interface/forms/procedure_order/common.php + - message: '#^Variable \$ppid on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/procedure_order/common.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/procedure_order/common.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/procedure_order/common.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/procedure_order/common.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/procedure_order/delete.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/procedure_order/delete.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/procedure_order/delete.php + - message: '#^Variable \$i might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/procedure_order/templates/procedure_reason_row.php + - message: '#^Variable \$reasonCodeStatii might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/procedure_order/templates/procedure_reason_row.php + - message: '#^Variable \$do_warning might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php + - message: '#^Variable \$mode might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/questionnaire_assessments/save.php + - message: '#^Variable \$formid in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/forms/questionnaire_assessments/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/questionnaire_assessments/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/questionnaire_assessments/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/questionnaire_assessments/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/requisition/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/reviewofs/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/reviewofs/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/reviewofs/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/reviewofs/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/reviewofs/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/reviewofs/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/reviewofs/view.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/reviewofs/view.php + - message: '#^Constructor of class FormROS has an unused parameter \$_prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../interface/forms/ros/FormROS.class.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ros/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ros/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ros/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/sdoh/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/sdoh/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/sdoh/save.php + - message: '#^Variable \$formid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/sdoh/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/sdoh/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/sdoh/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/sdoh/save.php + - message: '#^Constructor of class FormSOAP has an unused parameter \$_prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../interface/forms/soap/FormSOAP.class.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/soap/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/soap/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/soap/view.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/create.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/create.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/track_anything/create.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/track_anything/create.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/track_anything/create.php + - message: '#^Variable \$fromencounter might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/track_anything/history.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/history.php + - message: '#^Variable \$row might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/history.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/history.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/track_anything/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/track_anything/new.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/new.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/new.php + - message: '#^Variable \$showbutton might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/track_anything/report.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/transfer_summary/new.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/transfer_summary/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/transfer_summary/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/transfer_summary/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/transfer_summary/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/transfer_summary/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/transfer_summary/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/transfer_summary/save.php + - message: '#^Variable \$disabled might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/treatment_plan/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/treatment_plan/new.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/treatment_plan/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/treatment_plan/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/treatment_plan/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/treatment_plan/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/treatment_plan/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/treatment_plan/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/treatment_plan/save.php + - message: '#^Variable \$results might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/C_FormVitals.class.php + - message: '#^Variable \$HC_delta_x might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$HC_delta_y might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$HC_dot_x might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$HC_dot_y might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$HT_delta_x might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$HT_x might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$HToffset might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$WT_delta_y might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$WT_y might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$WToffset might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$age might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$age_in_months might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$ageinYMD might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$bmi might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$bmi_delta_x might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$bmi_delta_y might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$bmi_dot_x might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$bmi_dot_y might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$chart might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$chartCss1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$chartCss2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$datatable2_bmi_offset might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$datatable2_hc_offset might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$datatable_bmi_offset might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$datatable_hc_offset might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$dob might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$pid in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/vitals/new.php + - message: '#^Variable \$bps might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/vitals/report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/vitals/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/vitals/view.php + - message: '#^Variable \$inDir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms_admin/forms_admin.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms_admin/forms_admin.php + - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/globals.php + - message: '#^Variable \$portal_temp_css_theme_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/globals.php + - message: '#^Variable \$temp_css_theme_name might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/globals.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/globals.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/help_modal.php + - message: '#^Variable \$create might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/language/csv/translation_utilities.php + - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/language/lang_definition.php + - message: '#^Variable \$go might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/language/lang_definition.php + - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/language/lang_manage.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/language/language.php + - message: '#^Variable \$openemr_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/login/login.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/login_screen.php + - message: '#^Variable \$getevent might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/logview/logview.php + - message: '#^Variable \$openemr_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/about_page.php + - message: '#^Variable \$authorize might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$groupname might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$result1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$result2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$result3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$result4 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$tmore might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$authorize might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/authorizations/authorizations_full.php + - message: '#^Variable \$groupname might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/authorizations/authorizations_full.php + - message: '#^Variable \$result3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations_full.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations_full.php + - message: '#^Variable \$tback might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations_full.php + - message: '#^Function gzopen64 not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/main/backup.php + - message: '#^Variable \$UOR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/backup.php + - message: '#^Variable \$datatypes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/backup.php + - message: '#^Variable \$sources might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/backup.php + - message: '#^Variable \$sqlconf might not be defined\.$#' + identifier: variable.undefined + count: 46 + path: ../interface/main/backup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/backup.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/backup.php + - message: '#^Variable \$zipname might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/backup.php + - message: '#^Variable \$sqlconf might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/main/backuplog.php + - message: '#^Variable \$duration might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$e2f might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$endtime might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$event_date might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$exdates in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$locationspec might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$multiple_value might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$my_recurrtype might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$new_eid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$noRecurrspec might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$providers_current might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$recurrence_end_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$recurrspec might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$starttime might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$isProv might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/find_appt_popup.php + - message: '#^Variable \$providerid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/find_appt_popup.php + - message: '#^Variable \$slots might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/find_appt_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/find_appt_popup.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/find_group_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/find_group_popup.php + - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/main/calendar/find_patient_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/find_patient_popup.php + - message: '#^Path in require\(\) "config\.php" is not a file or it does not exist\.$#' + identifier: require.fileNotFound + count: 1 + path: ../interface/main/calendar/includes/pnAPI.php + - message: '#^Path in require\(\) "includes/pnHTML\.php" is not a file or it does not exist\.$#' + identifier: require.fileNotFound + count: 1 + path: ../interface/main/calendar/includes/pnAPI.php + - message: '#^Path in require\(\) "includes/pnMod\.php" is not a file or it does not exist\.$#' + identifier: require.fileNotFound + count: 1 + path: ../interface/main/calendar/includes/pnAPI.php + - message: '#^Path in require\(\) "pntables\.php" is not a file or it does not exist\.$#' + identifier: require.fileNotFound + count: 1 + path: ../interface/main/calendar/includes/pnAPI.php + - message: '#^Variable \$_GLOBALS might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/calendar/includes/pnAPI.php + - message: '#^Method pnHTML\:\:EndPage\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:FormEnd\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:FormHidden\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:FormSelectMultiple\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:FormStart\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:FormSubmit\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:Linebreak\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:StartPage\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:Text\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Path in include\(\) "footer\.php" is not a file or it does not exist\.$#' + identifier: include.fileNotFound + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Path in include\(\) "header\.php" is not a file or it does not exist\.$#' + identifier: include.fileNotFound + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/index.php + - message: '#^Constant _CALAPR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALAUG not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALDEC not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALFEB not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALJAN not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALJUL not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALJUN not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALMAR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALMAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALNOV not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALOCT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALSEP not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _PC_OL_CLOSE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Variable \$pcDir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _SETTING_DATE_FORMAT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _SETTING_DAY_HICOLOR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _SETTING_DISPLAY_TOPICS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _SETTING_TEMPLATE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _SETTING_TIME_24HOUR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _SETTING_USE_INT_DATES not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _SETTING_USE_POPUPS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Variable \$template_view in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _PC_LOCALE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_format.php + - message: '#^Constant _SETTING_DATE_FORMAT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_format.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_format.php + - message: '#^Constant _CAL_DAYVIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Constant _CAL_MONTHVIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Constant _CAL_WEEKVIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Constant _CAL_YEARVIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Constant _PC_JUMP_MENU_SUBMIT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Variable \$d in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Variable \$m in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Variable \$viewtype in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Variable \$y in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Constant _PC_FILTER_CATEGORY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _PC_FILTER_TOPIC not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _PC_FILTER_USERS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _PC_FILTER_USERS_ALL not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _PC_TPL_VIEW_SUBMIT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _SETTING_DISPLAY_TOPICS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _SETTING_TEMPLATE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Variable \$catoptions might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Variable \$class might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Variable \$pcTemplate in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Variable \$useroptions might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Variable \$viewtype in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_form_nav_close.php + - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_form_nav_open.php + - message: '#^Constant _SETTING_USE_POPUPS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_popup.php + - message: '#^Variable \$sticky might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_popup.php + - message: '#^Variable \$text might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_popup.php + - message: '#^Variable \$function might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php + - message: '#^Variable \$order might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php + - message: '#^Variable \$sort might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php + - message: '#^Variable \$value might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php + - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php + - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' + identifier: constant.notFound + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php + - message: '#^Variable \$link might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php + - message: '#^Variable \$localpath might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php + - message: '#^Variable \$setdeftime might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php + - message: '#^Constant _PC_TPL_VIEW_SUBMIT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Constant _SETTING_TEMPLATE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Variable \$d in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Variable \$m in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Variable \$pcTemplate in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Variable \$viewtype in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Variable \$y in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Constant _PC_LOCALE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/modifier.pc_date_format.php + - message: '#^Constant _SETTING_DATE_FORMAT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/modifier.pc_date_format.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/modifier.pc_date_format.php + - message: '#^Constant _ACO not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _EDIT_PC_CONFIG_CATDETAILS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _EDIT_PC_CONFIG_CATEGORIES not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_ACTIVE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_ADD_CAT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_ALL_DAY_CAT_NO not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_ALL_DAY_CAT_TITLE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_ALL_DAY_CAT_YES not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_ARE_YOU_SURE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CACHE_CLEARED not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CATS_CONFIRM not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_CLINIC not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_COLOR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_CONSTANT_ID not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_DELETE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_DESC not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_DESC_XL not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_DUR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_NAME not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_NAME_XL not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_PATIENT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_PROVIDER not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_THERAPY_GROUP not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_TYPE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CLEAR_CACHE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_COLOR_PICK_TITLE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_DELETE_CATS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_DURATION_HOUR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_DURATION_MIN not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_END_DATE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_1ST not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_2ND not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_3RD not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_4TH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_DAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_FOURTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_FRI not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_LAST not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_MON not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_MONTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_OTHER not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_SAT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_SUN not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_THIRD not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_THU not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_TUE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_WED not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_WEEK not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_WORKDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_YEAR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_MODIFY_CATS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_MONTHS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_NEW_CAT_TITLE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_NEW_CAT_TITLE_S not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_NO_END not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_NO_REPEAT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_OF_EVERY_2MONTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_OF_EVERY_3MONTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_OF_EVERY_4MONTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_OF_EVERY_6MONTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_OF_EVERY_MONTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_OF_EVERY_YEAR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_OF_THE_MONTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_REPEAT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_REPEATING_HEADER not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_REPEAT_ON not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_REP_CAT_TITLE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_REP_CAT_TITLE_S not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_SEQ not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_TEST_SYSTEM not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Undefined variable\: \$msg$#' + identifier: variable.undefined + count: 7 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Variable \$dels might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Variable \$msg on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Variable \$new_recurrfreq on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Variable \$newnam in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Variable \$aco might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$active might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$color might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$constantid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$desc might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$duration might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$end_all_day might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$end_date_flag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$end_date_freq might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$end_date_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$limitid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$recurrfreq might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$repeat might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$sequence might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$spec might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$value_cat_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$cDay might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pntemplates/default/views/monthSelector.php + - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Constant _SETTING_DISPLAY_TOPICS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Constant _SETTING_TEMPLATE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Constant _SETTING_USE_INT_DATES not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Undefined variable\: \$day$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Undefined variable\: \$month$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Undefined variable\: \$sqlKeywords$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$ProviderID in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$day on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$end in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$month on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$pc_category in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$pc_facility in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$pc_topic in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$s_category in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$s_topic in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$sqlKeywords in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$start in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$submit in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 3 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$tmpDate in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$year on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Constant _CALAPR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALAUG not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALDEC not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALFEB not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALFRIDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALFRIDAYSHORT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALJAN not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALJUL not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALJUN not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALMAR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALMAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALMONDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALMONDAYSHORT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALNOV not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALOCT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALSATURDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALSATURDAYSHORT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALSEP not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALSUNDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALSUNDAYSHORT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALTHURSDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALTHURSDAYSHORT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALTUESDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALTUESDAYSHORT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALWEDNESDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALWEDNESDAYSHORT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _SETTING_FIRST_DAY_WEEK not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _SETTING_TEMPLATE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _USER_BUSY_MESSAGE not found\.$#' + identifier: constant.notFound + count: 4 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _USER_BUSY_TITLE not found\.$#' + identifier: constant.notFound + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$cacheid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$category in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$ending_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$etime might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$event_status might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$nuke_users might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$patient_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$pc_username in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$provider_id might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$s_keywords in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$starting_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$stime might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$template_view in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$topic in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$userid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$viewtype might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$pnconfig might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/pntables.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/dated_reminders/dated_reminders.php + - message: '#^Variable \$ReminderSent might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/dated_reminders/dated_reminders_add.php + - message: '#^Variable \$patientID in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/dated_reminders/dated_reminders_add.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/dated_reminders/dated_reminders_add.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/dated_reminders/dated_reminders_add.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/dated_reminders/dated_reminders_log.php + - message: '#^Variable \$dates might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/display_documents.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/display_documents.php + - message: '#^Variable \$result in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/finder/document_select.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/finder/dynamic_finder.php + - message: '#^Variable \$aColumns might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/main/finder/dynamic_finder_ajax.php + - message: '#^Variable \$results might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/finder/multi_patients_finder.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/finder/multi_patients_finder.php + - message: '#^Variable \$results might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/finder/multi_patients_finder_ajax.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/finder/multi_patients_finder_ajax.php + - message: '#^Variable \$add_days might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$extracols might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$itemized_test_id might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$numerator_label might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$pass_id might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$report_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$where in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/ippf_export.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/main_screen.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/lab_results_messages.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/messages/lab_results_messages.php + - message: '#^Variable \$where might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/lab_results_messages.php + - message: '#^Variable \$background might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$body might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$cursor might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$message_legend might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$reply_to in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$title in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$prov_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/print_postcards.php + - message: '#^Function updateMessage not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/main/messages/save.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/save.php + - message: '#^Variable \$facilities might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/save.php + - message: '#^Variable \$providers might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/save.php + - message: '#^Variable \$results might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/messages/save.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/messages/save.php + - message: '#^Variable \$enc_list in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/messages/templates/linked_documents.php + - message: '#^Variable \$row might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/templates/linked_documents.php + - message: '#^Variable \$documentId might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/messages/trusted-messages-ajax.php + - message: '#^Variable \$error might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/messages/trusted-messages-ajax.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/messages/trusted-messages-ajax.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/messages/trusted-messages-ajax.php + - message: '#^Variable \$recipient might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/messages/trusted-messages-ajax.php + - message: '#^Variable \$requested_by might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/messages/trusted-messages-ajax.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/trusted-messages.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/trusted-messages.php + - message: '#^Variable \$tmore might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/onotes/office_comments.php + - message: '#^Class ESign\\Api referenced with incorrect case\: Esign\\Api\.$#' + identifier: class.nameCase + count: 2 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$any_search_class might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$dispatcher might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$fileroot might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$openemr_name might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$search_any_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$search_globals_class might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$classes on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/main/tabs/templates/patient_data_template.php + - message: '#^Variable \$classLoader might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/openemr.bootstrap.php + - message: '#^Variable \$eventDispatcher might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/openemr.bootstrap.php + - message: '#^Class OpenEMR\\Modules\\ClaimRevConnector\\CustomSkeletonFHIRResourceService not found\.$#' + identifier: class.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/Bootstrap.php + - message: '#^Access to an undefined property OpenEMR\\Modules\\ClaimRevConnector\\ConnectivityInfo\:\:\$token\.$#' + identifier: property.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/ConnectivityInfo.php + - message: '#^Variable \$revenueTools might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/EligibilityObjectCreator.php + - message: '#^Access to undefined constant OpenEMR\\Modules\\ClaimRevConnector\\GlobalConfig\:\:CONFIG_OPTION_ENCRYPTED\.$#' + identifier: classConstant.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/GlobalConfig.php + - message: '#^Access to undefined constant OpenEMR\\Modules\\ClaimRevConnector\\GlobalConfig\:\:CONFIG_OPTION_TEXT\.$#' + identifier: classConstant.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/GlobalConfig.php + - message: '#^Variable \$benefit might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/additional_info.php + - message: '#^Variable \$benefits might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/benefit.php + - message: '#^Variable \$benefit might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/date_information.php + - message: '#^Variable \$eligibilityData might not be defined\.$#' + identifier: variable.undefined + count: 20 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/deductibles.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/eligibility.php + - message: '#^Variable \$benefit might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/identifier_info.php + - message: '#^Variable \$eligibilityData might not be defined\.$#' + identifier: variable.undefined + count: 22 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/medicare_info.php + - message: '#^Variable \$benefit might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/messages.php + - message: '#^Variable \$tab might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/navbar.php + - message: '#^Variable \$benefit might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/procedure_info.php + - message: '#^Variable \$eligibilityData might not be defined\.$#' + identifier: variable.undefined + count: 69 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/quick_info.php + - message: '#^Variable \$receiver might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/receiver.php + - message: '#^Variable \$benefit might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/related_entity.php + - message: '#^Variable \$benefit might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/service_delivery.php + - message: '#^Variable \$source might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/source.php + - message: '#^Variable \$subscriberPatient might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/subscriber_patient.php + - message: '#^Variable \$data might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/validation.php + - message: '#^Variable \$eligibilityData might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/validation.php + - message: '#^Variable \$classLoader might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/openemr.bootstrap.php + - message: '#^Variable \$eventDispatcher might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/openemr.bootstrap.php + - message: '#^Variable \$_GET on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/public/index-portal.php + - message: '#^Variable \$_REQUEST on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/public/index.php + - message: '#^Variable \$user might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/src/Controller/TeleHealthVideoRegistrationController.php + - message: '#^Variable \$userSaveRecord might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/src/Services/TeleHealthRemoteRegistrationService.php + - message: '#^Constructor of class Comlink\\OpenEMR\\Modules\\TeleHealthModule\\TelehealthGlobalConfig has an unused parameter \$moduleDirectoryName\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/src/TelehealthGlobalConfig.php + - message: '#^Variable \$classLoader might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/openemr.bootstrap.php + - message: '#^Variable \$eventDispatcher might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/openemr.bootstrap.php + - message: '#^Variable \$datas might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/public/lab_setup.php + - message: '#^Variable \$data might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/public/primary_config_edit.php + - message: '#^Variable \$npi might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/public/primary_config_edit.php + - message: '#^Undefined variable\: \$$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/AddressBookAddEdit.php + - message: '#^Class OpenEMR\\Modules\\Dorn\\CustomSkeletonFHIRResourceService not found\.$#' + identifier: class.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/Bootstrap.php + - message: '#^Variable \$D might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-dorn/src/DornGenHl7Order.php + - message: '#^Variable \$segment might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/DornGenHl7Order.php + - message: '#^Variable \$segment might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-dorn/src/GenHl7OrderBase.php + - message: '#^Access to undefined constant OpenEMR\\Modules\\Dorn\\GlobalConfig\:\:CONFIG_OPTION_ENCRYPTED\.$#' + identifier: classConstant.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/GlobalConfig.php + - message: '#^Access to undefined constant OpenEMR\\Modules\\Dorn\\GlobalConfig\:\:CONFIG_OPTION_TEXT\.$#' + identifier: classConstant.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/GlobalConfig.php + - message: '#^Call to static method instance\(\) on an unknown class OpenEMR\\Modules\\Dorn\\EventAuditLogger\.$#' + identifier: class.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/ReceiveHl7Results.php + - message: '#^Undefined variable\: \$arep$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-dorn/src/ReceiveHl7Results.php + - message: '#^Undefined variable\: \$log$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/ReceiveHl7Results.php + - message: '#^Undefined variable\: \$prpath$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/ReceiveHl7Results.php + - message: '#^Property OpenEMR\\Modules\\Dorn\\models\\OrderStatusViewModel\:\:\$createdDateTimeUtc has unknown class OpenEMR\\Modules\\Dorn\\models\\DateTime as its type\.$#' + identifier: class.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/models/OrderStatusViewModel.php + - message: '#^Variable \$tab might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/modules/custom_modules/oe-module-dorn/templates/navbar.php + - message: '#^Variable \$classLoader might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/openemr.bootstrap.php + - message: '#^Variable \$eventDispatcher might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/openemr.bootstrap.php + - message: '#^Variable \$taskId might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/public/index.php + - message: '#^Variable \$localColumnName in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Models/ExportState.php + - message: '#^Variable \$currentDocumentSize might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php + - message: '#^Variable \$job might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php + - message: '#^Variable \$pidSlice might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php + - message: '#^Variable \$tasks might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php + - message: '#^Variable \$file_mime on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php + - message: '#^Variable \$interface_pid on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php + - message: '#^Variable \$isEmail on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php + - message: '#^Variable \$isFax on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php + - message: '#^Variable \$isSMS on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php + - message: '#^Variable \$route on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/index.php + - message: '#^Variable \$args on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/library/rc_sms_notification.php + - message: '#^Variable \$cred might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/library/rc_sms_notification.php + - message: '#^Variable \$db_patient on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/library/rc_sms_notification.php + - message: '#^Variable \$selectedService might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/library/setup_services.php + - message: '#^Variable \$vendors on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/library/setup_services.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/library/utility.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-faxsms/library/utility.php + - message: '#^Variable \$tabTitle on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/messageUI.php + - message: '#^Variable \$classLoader might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/openemr.bootstrap.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/setup_rc.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/setup_voice.php + - message: '#^Caught class OpenEMR\\Modules\\FaxSMS\\Controller\\Exception not found\.$#' + identifier: class.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php + - message: '#^Constructor of class OpenEMR\\Modules\\FaxSMS\\Controller\\AppDispatch has an unused parameter \$type\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php + - message: '#^Variable \$route on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php + - message: '#^Variable \$setup in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php + - message: '#^Access to an undefined property OpenEMR\\Modules\\FaxSMS\\Controller\\EmailClient\:\:\$appKey\.$#' + identifier: property.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/EmailClient.php + - message: '#^Access to an undefined property OpenEMR\\Modules\\FaxSMS\\Controller\\EmailClient\:\:\$appSecret\.$#' + identifier: property.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/EmailClient.php + - message: '#^Access to an undefined property OpenEMR\\Modules\\FaxSMS\\Controller\\EmailClient\:\:\$sid\.$#' + identifier: property.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/EmailClient.php + - message: '#^Variable \$content in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/RCFaxClient.php + - message: '#^Variable \$pname might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/RCFaxClient.php + - message: '#^Variable \$response might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/RCFaxClient.php + - message: '#^Variable \$responseMsgs in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/TwilioSMSClient.php + - message: '#^Access to an undefined static property OpenEMR\\Modules\\FaxSMS\\Controller\\VoiceClient\:\:\$authAttemptCount\.$#' + identifier: staticProperty.notFound + count: 2 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/VoiceClient.php + - message: '#^Access to an undefined static property OpenEMR\\Modules\\FaxSMS\\Controller\\VoiceClient\:\:\$lastAuthAttempt\.$#' + identifier: staticProperty.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/VoiceClient.php + - message: '#^Variable \$tz in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/EtherFax/EtherFaxClient.php + - message: '#^Variable \$data on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Events/NotificationEventListener.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Events/NotificationEventListener.php + - message: '#^Variable \$user on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Events/NotificationEventListener.php + - message: '#^Variable \$classLoader might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/openemr.bootstrap.php + - message: '#^Variable \$eventDispatcher might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/openemr.bootstrap.php + - message: '#^Variable \$id in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Bootstrap.php + - message: '#^Variable \$is_saved might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/LogImportBuild.php + - message: '#^Variable \$line in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/LogImportBuild.php + - message: '#^Variable \$sub on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/LogImportBuild.php + - message: '#^Variable \$provider_info on left side of \?\?\= always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/ModuleService.php + - message: '#^Variable \$patient_info on left side of \?\?\= always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php + - message: '#^Variable \$provider_info on left side of \?\?\= always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php + - message: '#^Variable \$relation on left side of \?\?\= always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php + - message: '#^Variable \$newKey in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/WenoValidate.php + - message: '#^Variable \$backGroundTask on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/templates/download_log_viewer.php + - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/templates/download_log_viewer.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-weno/templates/indexrx.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/templates/indexrx.php + - message: '#^Variable \$vendors on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/templates/weno_setup.php + - message: '#^Variable \$usersData might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/templates/weno_users.php + - message: '#^Variable \$array_active_modules might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Acl/src/Acl/Controller/AclController.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Acl/src/Acl/Model/AclTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Acl/src/Acl/Model/AclTable.php + - message: '#^Class OpenEMR\\Core\\Kernel referenced with incorrect case\: OpenEmr\\Core\\Kernel\.$#' + identifier: class.nameCase + count: 1 + path: ../interface/modules/zend_modules/module/Application/config/module.config.php + - message: '#^Call to an undefined method Application\\Controller\\IndexController\:\:CommonPlugin\(\)\.$#' + identifier: method.notFound + count: 1 + path: ../interface/modules/zend_modules/module/Application/src/Application/Controller/IndexController.php + - message: '#^Call to an undefined method Application\\Controller\\SendtoController\:\:escapeHtml\(\)\.$#' + identifier: method.notFound + count: 2 + path: ../interface/modules/zend_modules/module/Application/src/Application/Controller/SendtoController.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Exception\\ExceptionInterface" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\Feature\\GlobalAdapterFeature" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php + - message: '#^Variable \$rowCount might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Application/src/Application/Model/SendtoTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Application/src/Application/Model/SendtoTable.php + - message: '#^Variable \$rows might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Application/src/Application/Plugin/CommonPlugin.php + - message: '#^Call to an undefined method Carecoordination\\Controller\\CarecoordinationController\:\:CommonPlugin\(\)\.$#' + identifier: method.notFound + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CarecoordinationController.php + - message: '#^Call to an undefined method Carecoordination\\Controller\\CarecoordinationController\:\:Documents\(\)\.$#' + identifier: method.notFound + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CarecoordinationController.php + - message: '#^Variable \$his_tob_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CarecoordinationController.php + - message: '#^Call to an undefined method Carecoordination\\Controller\\CcdController\:\:updateDocumentCategoryUsingCatname\(\)\.$#' + identifier: method.notFound + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CcdController.php + - message: '#^Undefined variable\: \$combination$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncounterccdadispatchController.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncounterccdadispatchController.php + - message: '#^Call to an undefined method Carecoordination\\Controller\\EncountermanagerController\:\:CommonPlugin\(\)\.$#' + identifier: method.notFound + count: 5 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncountermanagerController.php + - message: '#^Variable \$combination might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncountermanagerController.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\AdapterInterface" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/ModuleconfigController.php + - message: '#^Constructor of class Carecoordination\\Form\\ModuleconfigForm has an unused parameter \$dbAdapter\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Form/ModuleconfigForm.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\AdapterInterface" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Form/ModuleconfigForm.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Variable \$allergy_begdate_value might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Variable \$documentationOf might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Variable \$o_id might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Variable \$pid_exist on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Variable \$provider_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Variable \$res_cur might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Variable \$value might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdTable.php + - message: '#^Variable \$str might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdaGenerator.php + - message: '#^Variable \$str1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdaGenerator.php + - message: '#^Variable \$sortPreferences on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdaUserPreferencesTransformer.php + - message: '#^Function display_layout_rows_group_new not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\AdapterInterface" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$code_type on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$count might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$details in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$encounter in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$encounter_activity on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$encounter_diagnosis might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$formatted_date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$forms might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$getprovider in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$query might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$res_issues on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$row_patient_data might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$searchClause in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$start_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$time in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 2 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$tmp on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$trans_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$uuid on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php + - message: '#^Variable \$ccda_file might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php + - message: '#^Variable \$ccda_id might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php + - message: '#^Variable \$formatted_date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php + - message: '#^Variable \$res_cur might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php + - message: '#^Variable \$trans_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/MapperTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/MapperTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/Moduleconfig.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Select" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/Moduleconfig.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/Moduleconfig.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/Moduleconfig.php + - message: '#^Access to an undefined property Carecoordination\\Model\\ModuleconfigTable\:\:\$applicationTable\.$#' + identifier: property.notFound + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/ModuleconfigTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/ModuleconfigTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Select" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/ModuleconfigTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/ModuleconfigTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/ModuleconfigTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/SetupTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/SetupTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Ccr/Module.php + - message: '#^Class Ccr\\Model\\CcrTable constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../interface/modules/zend_modules/module/Ccr/config/module.config.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Ccr/config/module.config.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Ccr/config/module.config.php + - message: '#^Call to an undefined method Ccr\\Controller\\CcrController\:\:CommonPlugin\(\)\.$#' + identifier: method.notFound + count: 2 + path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Controller/CcrController.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Model/CcrTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Model/CcrTable.php + - message: '#^Variable \$active might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Model/CcrTable.php + - message: '#^Variable \$activity might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Model/CcrTable.php + - message: '#^Call to an undefined method Documents\\Controller\\DocumentsController\:\:Documents\(\)\.$#' + identifier: method.notFound + count: 2 + path: ../interface/modules/zend_modules/module/Documents/src/Documents/Controller/DocumentsController.php + - message: '#^Variable \$style might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Documents/src/Documents/Controller/DocumentsController.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Documents/src/Documents/Model/DocumentsTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Immunization/config/module.config.php + - message: '#^Call to an undefined method Immunization\\Controller\\ImmunizationController\:\:CommonPlugin\(\)\.$#' + identifier: method.notFound + count: 9 + path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Controller/ImmunizationController.php + - message: '#^Variable \$rows might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Controller/ImmunizationController.php + - message: '#^Constructor of class Immunization\\Form\\ImmunizationForm has an unused parameter \$name\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Form/ImmunizationForm.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Select" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php + - message: '#^Variable \$res_cur might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php + - message: '#^Variable \$val might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Installer/Module.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Installer/config/module.config.php + - message: '#^Variable \$curr_html_tag might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php + - message: '#^Variable \$div on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php + - message: '#^Variable \$status might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php + - message: '#^Variable \$v_major might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php + - message: '#^Variable \$v_minor might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php + - message: '#^Variable \$v_patch might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Driver\\Pdo\\Result" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\Feature\\GlobalAdapterFeature" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTable.php + - message: '#^Variable \$modArr might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTable.php + - message: '#^Variable \$ret_str might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\AdapterInterface" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTableGateway.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Sql" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTableGateway.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\TableIdentifier" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTableGateway.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTableGateway.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Multipledb/config/module.config.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Multipledb/src/Multipledb/Model/MultipledbTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Expression" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Multipledb/src/Multipledb/Model/MultipledbTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Predicate" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Multipledb/src/Multipledb/Model/MultipledbTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Multipledb/src/Multipledb/Model/MultipledbTable.php + - message: '#^Variable \$aclSetupFlag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/PatientFilter/acl/acl_setup.php + - message: '#^Variable \$aclSetupFlag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/PatientFilter/acl/acl_upgrade.php + - message: '#^Variable \$drug_test_count might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/PatientFlowBoard/src/PatientFlowBoard/Listener/PatientFlowBoardEventsSubscriber.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Patientvalidation/Module.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Patientvalidation/config/module.config.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Patientvalidation/src/Patientvalidation/Model/PatientDataTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Expression" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Patientvalidation/src/Patientvalidation/Model/PatientDataTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Predicate" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Patientvalidation/src/Patientvalidation/Model/PatientDataTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Patientvalidation/src/Patientvalidation/Model/PatientDataTable.php + - message: '#^Variable \$p might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/PrescriptionTemplates/src/PrescriptionTemplates/Controller/PrescriptionTemplatesController.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Syndromicsurveillance/config/module.config.php + - message: '#^Call to an undefined method Syndromicsurveillance\\Controller\\SyndromicsurveillanceController\:\:CommonPlugin\(\)\.$#' + identifier: method.notFound + count: 3 + path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Controller/SyndromicsurveillanceController.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\Sql\\Select" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\AbstractTableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php + - message: '#^Laminas\-DB class "Laminas\\Db\\TableGateway\\TableGateway" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' + identifier: openemr.deprecatedLaminasDb + count: 1 + path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php + - message: '#^Variable \$formatted_date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php + - message: '#^Variable \$res_cur might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php + - message: '#^Variable \$text might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php + - message: '#^Variable \$BS_COL_CLASS might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/new/new_comprehensive.php + - message: '#^Variable \$date_init might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/new/new_comprehensive.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/new/new_comprehensive.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/new/new_comprehensive_save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/new/new_comprehensive_save.php + - message: '#^Variable \$alertmsg might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/new/new_patient_save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/new/new_patient_save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/new/new_patient_save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/new/new_patient_save.php + - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/new/new_search_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/new/new_search_popup.php + - message: '#^Variable \$codes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/find_order_popup.php + - message: '#^Variable \$proctype_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/find_order_popup.php + - message: '#^Variable \$ptrow might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/orders/find_order_popup.php + - message: '#^Variable \$sub might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/find_order_popup.php + - message: '#^Variable \$testid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/find_order_popup.php + - message: '#^Variable \$transport might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/find_order_popup.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/find_order_popup.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/gen_hl7_order.inc.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/orders/list_reports.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/list_reports.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/orders/list_reports.php + - message: '#^Variable \$ptid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/orders/load_compendium.php + - message: '#^Variable \$insco in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/orders/order_manifest.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/orders/order_manifest.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/orders/orders_results.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/orders/orders_results.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/orders/patient_match_dialog.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/orders/pending_orders.php + - message: '#^Variable \$optionsStr on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/orders/procedure_provider_edit.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/procedure_provider_edit.php + - message: '#^Variable \$help_icon might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/procedure_provider_list.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/procedure_provider_list.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/procedure_stats.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/procedure_stats.php + - message: '#^Instantiated class QuestResultClient not found\.$#' + identifier: class.notFound + count: 1 + path: ../interface/orders/receive_hl7_results.inc.php + - message: '#^Undefined variable\: \$arep$#' + identifier: variable.undefined + count: 2 + path: ../interface/orders/receive_hl7_results.inc.php + - message: '#^Undefined variable\: \$patient_id$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/single_order_results.inc.php + - message: '#^Variable \$aNotes in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/orders/single_order_results.inc.php + - message: '#^Function cms_portal_call not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/orders/single_order_results.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/orders/single_order_results.php + - message: '#^Variable \$help_icon might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/types.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/types.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/types_edit.php + - message: '#^Variable \$title might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/types_edit.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/addr_label.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/barcode_label.php + - message: '#^Variable \$type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/barcode_label.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/download_template.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/download_template.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/download_template.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/education.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/education.php + - message: '#^Variable \$counter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/cash_receipt.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/cash_receipt.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/encounter/cash_receipt.php + - message: '#^Variable \$raw_encounter_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/cash_receipt.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/encounter/cash_receipt.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/coding.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/coding.php + - message: '#^Variable \$all might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/copay.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/copay.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/delete_form.php + - message: '#^Variable \$incdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/delete_form.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/delete_form.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/delete_form.php + - message: '#^Variable \$counter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/patient_file/encounter/diagnosis.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/patient_file/encounter/diagnosis.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis.php + - message: '#^Variable \$tback might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis.php + - message: '#^Variable \$tmore might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/diagnosis.php + - message: '#^Variable \$code might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$counter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$tback might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$text might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/encounter_bottom.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/encounter_top.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/encounter_top.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/encounter_top.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/find_code_dynamic.php + - message: '#^Variable \$code_external_tables might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$codetype might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$fe_array might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$from might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$include_inactive might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$sellist might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$source might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$where1 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/find_code_history.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/find_code_popup.php + - message: '#^Variable \$attendant_type might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 23 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$groupId might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 19 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$therapy_group might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/search_code.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/search_code.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/search_code.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/select_codes.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_codes.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/superbill_codes.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/superbill_codes.php + - message: '#^Variable \$tback might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_codes.php + - message: '#^Variable \$tmore might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_codes.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/superbill_codes.php + - message: '#^Variable \$code might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$code_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$code_type_name_external might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$filter_key might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$modifier might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$res might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$taxrates might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$incdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/trend_form.php + - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$cryptoGen might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$form_pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$payment_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$session_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$ccaudit might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/front_payment_cc.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/front_payment_cc.php + - message: '#^Variable \$response might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/front_payment_cc.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/history/encounters.php + - message: '#^Variable \$attendant_type might not be defined\.$#' + identifier: variable.undefined + count: 13 + path: ../interface/patient_file/history/encounters.php + - message: '#^Variable \$dres might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/history/encounters.php + - message: '#^Variable \$encounter_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/history/encounters.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 22 + path: ../interface/patient_file/history/encounters.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/history/encounters.php + - message: '#^Variable \$therapy_group might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/history/encounters.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/history/encounters_ajax.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/history/history.php + - message: '#^Variable \$list_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/history/history.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/history/history.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/history/history.php + - message: '#^Variable \$date_init might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/history/history_full.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/history/history_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/history/history_full.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/history/history_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/history/history_save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/history/history_save.php + - message: '#^Variable \$last might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/label.php + - message: '#^Variable \$pdf might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/label.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/label.php + - message: '#^Variable \$bodytext might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/patient_file/letter.php + - message: '#^Variable \$from_title on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/patient_file/letter.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/letter.php + - message: '#^Variable \$to_title on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/patient_file/letter.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/manage_dup_patients.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/merge_patients.php + - message: '#^Variable \$source on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/patient_file/merge_patients.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/merge_patients.php + - message: '#^Variable \$tables might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/merge_patients.php + - message: '#^Variable \$target on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/patient_file/merge_patients.php + - message: '#^Function generateCheckoutReceipt not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 2 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$contraception_billing_code might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$form_num_amount_columns might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$form_num_method_columns might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$form_num_ref_columns might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$form_num_type_columns might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$num_optional_columns might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$thisdate might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$amount might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/pos_checkout_normal.php + - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/patient_file/pos_checkout_normal.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/pos_checkout_normal.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/pos_checkout_normal.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/pos_checkout_normal.php + - message: '#^Path in include_once\(\) "\.\./\.\./custom/fee_sheet_codes\.php" is not a file or it does not exist\.$#' + identifier: includeOnce.fileNotFound + count: 1 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$pages might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$patdata might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/problem_encounter.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/problem_encounter.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/problem_encounter.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/reminder/active_reminder_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/reminder/active_reminder_popup.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/reminder/clinical_reminders.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/reminder/clinical_reminders.php + - message: '#^Variable \$rules_default might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/reminder/patient_reminders.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/reminder/patient_reminders.php + - message: '#^Caught class MpdfException not found\.$#' + identifier: class.notFound + count: 2 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Function cms_portal_call not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$from_file_tmp_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$insurance_data_array might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 23 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$prevIssueType might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$tback might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$tmp_files_remove might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/patient_report.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/report/patient_report.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/patient_file/report/patient_report.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/patient_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/report/patient_report.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/rules/patient_data.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/rules/patient_data.php + - message: '#^Variable \$amendment_desc might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/add_edit_amendments.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/add_edit_amendments.php + - message: '#^Variable \$resultSet might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/add_edit_amendments.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/add_edit_amendments.php + - message: '#^Variable \$ISSUE_CLASSIFICATIONS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/add_edit_issue.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/add_edit_issue.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/add_edit_issue.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/add_edit_issue.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/add_edit_issue.php + - message: '#^Variable \$form_adreviewed might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/advancedirectives.php + - message: '#^Variable \$form_completedad might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/advancedirectives.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/advancedirectives.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/advancedirectives.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/browse.php + - message: '#^Variable \$tback might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/browse.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/clinical_reminders_fragment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/clinical_reminders_fragment.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/patient_file/summary/create_portallogin.php + - message: '#^Variable \$oemr_ui might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/dashboard_header.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/dashboard_header.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/dashboard_header.php + - message: '#^Variable \$expand_icon_class might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/dashboard_header_simple_return.php + - message: '#^Variable \$expand_title might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/dashboard_header_simple_return.php + - message: '#^Variable \$expandable might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/dashboard_header_simple_return.php + - message: '#^Variable \$go_back_href might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/dashboard_header_simple_return.php + - message: '#^Variable \$header_title might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/dashboard_header_simple_return.php + - message: '#^Variable \$help_icon might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/dashboard_header_simple_return.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/dashboard_header_simple_return.php + - message: '#^Class OpenEMR\\Menu\\PatientMenuRole constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Class OpenEMR\\Patient\\Cards\\PortalCard constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$apptStyle2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$appts might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$bgColor might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$extraApptDate might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$firstApptIndx might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$num_of_days might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$past_appts might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$query might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$resNotNull might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$therapyGroupCategories might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$vitals_form_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$condition_str might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics_full.php + - message: '#^Variable \$date_init might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics_full.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/patient_file/summary/demographics_full.php + - message: '#^Path in include\(\) "\.\./\.\./\.\./custom/demographics_print\.php" is not a file or it does not exist\.$#' + identifier: include.fileNotFound + count: 1 + path: ../interface/patient_file/summary/demographics_print.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/demographics_print.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/demographics_print.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics_print.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics_print.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/demographics_save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/disc_fragment.php + - message: '#^Variable \$active might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/disclosure_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/summary/disclosure_full.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/disclosure_full.php + - message: '#^Variable \$administered_by might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$code might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$code_text might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$code_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$immunization_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$imo_criteria_value might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$observation_criteria might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$observation_criteria_value might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$vis_presented_dateval might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$vis_published_dateval might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/insurance_edit.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/summary/insurance_edit.php + - message: '#^Variable \$date_collected might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/labdata.php + - message: '#^Variable \$nothing might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/labdata.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/summary/labdata.php + - message: '#^Variable \$result_code might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/labdata.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/labdata.php + - message: '#^Variable \$the_item might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/labdata.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/labdata.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/labdata_fragment.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/lbf_fragment.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/list_amendments.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/list_amendments.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/patient_reminders_fragment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/patient_reminders_fragment.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/pnotes.php + - message: '#^Variable \$tmore might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/pnotes_fragment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/pnotes_fragment.php + - message: '#^Variable \$notes_sent_count might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_full.php + - message: '#^Variable \$result_count might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_full.php + - message: '#^Variable \$result_sent_count might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_full.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_full_add.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/summary/pnotes_full_add.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_full_add.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_print.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/pnotes_print.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/print_amendments.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/print_amendments.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/record_disclosure.php + - message: '#^Undefined variable\: \$title$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/shot_record.php + - message: '#^Variable \$data might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/shot_record.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/shot_record.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/shot_record.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/stats.php + - message: '#^Variable \$kernel might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/stats.php + - message: '#^Variable \$need_head might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/stats.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/patient_file/summary/stats.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/stats.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/stats_full.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/stats_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/summary/stats_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/track_anything_fragment.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/vitals_fragment.php + - message: '#^Variable \$date_init might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/transaction/add_transaction.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/transaction/add_transaction.php + - message: '#^Variable \$newid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/transaction/add_transaction.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 13 + path: ../interface/patient_file/transaction/add_transaction.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/transaction/add_transaction.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/transaction/add_transaction.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/transaction/print_referral.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/transaction/print_referral.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/transaction/print_referral.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/transaction/record_request.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/transaction/transactions.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/transaction/transactions.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/transaction/transactions.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/void_dialog.php + - message: '#^Variable \$MedEx might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$count_facs might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$count_provs might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$current_events might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$from_date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$from_date on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$icon2_here might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$icon_4_CALL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$icon_extra might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$icon_here might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$icons might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$local might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$ptkr_future_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$reason_visit might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$select_facs might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$select_provs might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$statuses_list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$to_date on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_tracker/patient_tracker_status.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/procedure_tools/ereqs/ereq_universal_form.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/procedure_tools/ereqs/ereq_universal_form.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/procedure_tools/gen_universal_hl7/gen_hl7_order.inc.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/procedure_tools/labcorp/ereq_form.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/procedure_tools/labcorp/ereq_form.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/procedure_tools/labcorp/gen_hl7_order.inc.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/procedure_tools/quest/gen_hl7_order.inc.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/amc_full_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/amc_tracking.php + - message: '#^Variable \$rems_out might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/appointments_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/appointments_report.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/appt_encounter_report.php + - message: '#^Variable \$res might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/appt_encounter_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/appt_encounter_report.php + - message: '#^Variable \$checkSumNewApi might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/audit_log_tamper_report.php + - message: '#^Variable \$getevent might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/audit_log_tamper_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/cdr_log.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/chart_location_activity.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/chart_location_activity.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/charts_checked_out.php + - message: '#^Variable \$mh_stmt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/clinical_reports.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/clinical_reports.php + - message: '#^Variable \$agecolno might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/collections_report.php + - message: '#^Variable \$ins_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/collections_report.php + - message: '#^Variable \$insposition might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/collections_report.php + - message: '#^Variable \$invlines might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/collections_report.php + - message: '#^Variable \$provider_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/collections_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/collections_report.php + - message: '#^Variable \$report_id on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/reports/cqm.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/cqm.php + - message: '#^Variable \$EXPORT_INC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$RadioSeperator might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaDataTypeMaster might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaDisplayMaster might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaDisplayRadioMaster might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaIncludeMaster might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaKeyMaster might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaQueryDropDownMaster might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaQueryDropDownMasterDefault might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaQueryDropDownMasterDefaultKey might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaRadioKeyMaster might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TextSeperator might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$daysheet might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$daysheet_total might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$provider_run might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$insurance_data_array might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/custom_report_range.php + - message: '#^Variable \$patient_data_array might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/custom_report_range.php + - message: '#^Variable \$pids might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/reports/custom_report_range.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/custom_report_range.php + - message: '#^Variable \$selectedFacility in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/reports/daily_summary_report.php + - message: '#^Variable \$selectedProvider in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/reports/daily_summary_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/daily_summary_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/destroyed_drugs_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/encounters_report.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/external_data.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/external_data.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/external_data.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/front_receipts_report.php + - message: '#^Variable \$total1_by_method might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/front_receipts_report.php + - message: '#^Variable \$total2_by_method might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/front_receipts_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/immunization_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/inventory_activity.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/inventory_list.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/inventory_list.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/inventory_transactions.php + - message: '#^Variable \$productleft might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/ippf_cyp_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/ippf_cyp_report.php + - message: '#^Variable \$report_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/ippf_daily.php + - message: '#^Variable \$arr_report in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/reports/ippf_statistics.php + - message: '#^Variable \$form_report might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/ippf_statistics.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/message_list.php + - message: '#^Variable \$openemr_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/non_reported.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/non_reported.php + - message: '#^Variable \$effectiveInsurances might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/pat_ledger.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/pat_ledger.php + - message: '#^Variable \$last_year might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/pat_ledger.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/pat_ledger.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/patient_flow_board_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/patient_list.php + - message: '#^Variable \$observation_description in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/reports/patient_list_creation.php + - message: '#^Variable \$odrstmt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/patient_list_creation.php + - message: '#^Variable \$prescription_drug in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/reports/patient_list_creation.php + - message: '#^Variable \$procedure_diagnosis in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/reports/patient_list_creation.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/patient_list_creation.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/prescriptions_report.php + - message: '#^Undefined variable\: \$invnumber$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/receipts_by_method_report.php + - message: '#^Variable \$b in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 2 + path: ../interface/reports/receipts_by_method_report.php + - message: '#^Variable \$key in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../interface/reports/receipts_by_method_report.php + - message: '#^Variable \$rowmethod might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/receipts_by_method_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/receipts_by_method_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/referrals_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/report_results.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/sales_by_item.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/services_by_category.php + - message: '#^Variable \$key might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/services_by_category.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/svc_code_financial_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/unique_seen_patients_report.php + - message: '#^Variable \$logocode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/smart/register-app.php + - message: '#^Variable \$tinylogocode1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/smart/register-app.php + - message: '#^Variable \$tinylogocode2 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/smart/register-app.php + - message: '#^Variable \$GLOBALS_METADATA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/super/edit_globals.php + - message: '#^Variable \$USER_SPECIFIC_GLOBALS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/super/edit_globals.php + - message: '#^Variable \$USER_SPECIFIC_TABS might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/super/edit_globals.php + - message: '#^Variable \$globalTitle might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/super/edit_globals.php + - message: '#^Variable \$globalValue might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../interface/super/edit_globals.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/super/edit_globals.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_globals.php + - message: '#^Variable \$datatypes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_layout.php + - message: '#^Variable \$sources might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_layout.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_layout.php + - message: '#^Variable \$typesUsingList might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_layout.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_layout_props.php + - message: '#^Variable \$code might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/super/edit_list.php + - message: '#^Variable \$id in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/super/edit_list.php + - message: '#^Variable \$id in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/super/edit_list.php + - message: '#^Variable \$modifier on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/super/edit_list.php + - message: '#^Variable \$ok_map_cvx_codes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_list.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/super/edit_list.php + - message: '#^Variable \$total_rows might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_list.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/super/layout_service_codes.php + - message: '#^Variable \$eres might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/layout_service_codes.php + - message: '#^Variable \$tmp might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/layout_service_codes.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/manage_document_templates.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/manage_site_files.php + - message: '#^Variable \$resp in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/super/manage_site_files.php + - message: '#^Variable \$fldname might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/templates/field_html_display_section.php + - message: '#^Variable \$userMode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/templates/field_multi_sorted_list_selector.php + - message: '#^Variable \$therapy_group might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/index.php + - message: '#^Access to an undefined property ParticipantsController\:\:\$groupEventsModel\.$#' + identifier: property.notFound + count: 2 + path: ../interface/therapy_groups/therapy_groups_controllers/participants_controller.php + - message: '#^Access to an undefined property ParticipantsController\:\:\$groupModel\.$#' + identifier: property.notFound + count: 2 + path: ../interface/therapy_groups/therapy_groups_controllers/participants_controller.php + - message: '#^Access to an undefined property ParticipantsController\:\:\$groupParticipantsModel\.$#' + identifier: property.notFound + count: 6 + path: ../interface/therapy_groups/therapy_groups_controllers/participants_controller.php + - message: '#^Access to an undefined property TherapyGroupsController\:\:\$counselorsModel\.$#' + identifier: property.notFound + count: 4 + path: ../interface/therapy_groups/therapy_groups_controllers/therapy_groups_controller.php + - message: '#^Variable \$encounters might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_models/therapy_groups_encounters_model.php + - message: '#^Variable \$providers might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/therapy_groups/therapy_groups_models/users_model.php + - message: '#^Variable \$groupData might not be defined\.$#' + identifier: variable.undefined + count: 15 + path: ../interface/therapy_groups/therapy_groups_views/addGroup.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/therapy_groups/therapy_groups_views/addGroup.php + - message: '#^Variable \$savingStatus might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/therapy_groups/therapy_groups_views/addGroup.php + - message: '#^Variable \$statuses might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/addGroup.php + - message: '#^Variable \$users might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/addGroup.php + - message: '#^Variable \$events might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/appointmentComponent.php + - message: '#^Variable \$groupData might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/therapy_groups/therapy_groups_views/appointmentComponent.php + - message: '#^Variable \$groupId might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/therapy_groups/therapy_groups_views/appointmentComponent.php + - message: '#^Variable \$groupData might not be defined\.$#' + identifier: variable.undefined + count: 26 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php + - message: '#^Variable \$groupId might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php + - message: '#^Variable \$readonly might not be defined\.$#' + identifier: variable.undefined + count: 13 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php + - message: '#^Variable \$savingStatus might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php + - message: '#^Variable \$statuses might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php + - message: '#^Variable \$users might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php + - message: '#^Variable \$addStatus might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$groupId might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$groupName might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$group_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$participant_data might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$participants might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$readonly might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$statuses might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$counselors might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/listGroups.php + - message: '#^Variable \$deletion_response might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/therapy_groups/therapy_groups_views/listGroups.php + - message: '#^Variable \$deletion_try might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/listGroups.php + - message: '#^Variable \$group_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/listGroups.php + - message: '#^Variable \$statuses might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/therapy_groups/therapy_groups_views/listGroups.php + - message: '#^Variable \$therapyGroups might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/listGroups.php + - message: '#^Variable \$row might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/addrbook_edit.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/addrbook_edit.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/addrbook_list.php + - message: '#^Variable \$result2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/facilities.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/facilities_add.php + - message: '#^Variable \$my_fid on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/usergroup/facility_admin.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/facility_admin.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/facility_user.php + - message: '#^Variable \$date_init might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/facility_user_admin.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/facility_user_admin.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/mfa_registrations.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/mfa_totp.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/mfa_u2f.php + - message: '#^Variable \$email might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/ssl_certificates_admin.php + - message: '#^Variable \$user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/ssl_certificates_admin.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/user_admin.php + - message: '#^Variable \$selected_user_is_superuser might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/usergroup/user_admin.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/user_admin.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/user_info.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/user_info.php + - message: '#^Variable \$SMTP_HOST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$current_date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$grace_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$grouplist might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$pwd_expires might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$result4 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$result5 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$success might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$un might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$grouplist might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/usergroup_admin_add.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/usergroup_admin_add.php + - message: '#^Variable \$result3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin_add.php + - message: '#^Variable \$result5 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin_add.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/usergroup_admin_add.php + - message: '#^Variable \$dbase might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../ippf_upgrade.php + - message: '#^Path in include\(\) "views/esign_signature_log\.php" is not a file or it does not exist\.$#' + identifier: include.fileNotFound + count: 1 + path: ../library/ESign/DbRow/Signable.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/ESign/views/default/esign_signature_log.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/ESign/views/encounter/esign_button.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../library/ESign/views/encounter/esign_form.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/ESign/views/form/esign_button.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../library/ESign/views/form/esign_form.php + - message: '#^Function acl_check not found\.$#' + identifier: function.notFound + count: 1 + path: ../library/FeeSheet.class.php + - message: '#^Function updateInvoiceRefNumber not found\.$#' + identifier: function.notFound + count: 1 + path: ../library/FeeSheet.class.php + - message: '#^Variable \$autojustify might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/FeeSheet.class.php + - message: '#^Access to an undefined property MedExApi\\Display\:\:\$lastError\.$#' + identifier: property.notFound + count: 4 + path: ../library/MedEx/API.php + - message: '#^Access to an undefined property MedExApi\\Events\:\:\$lastError\.$#' + identifier: property.notFound + count: 2 + path: ../library/MedEx/API.php + - message: '#^Access to an undefined property MedExApi\\Practice\:\:\$lastError\.$#' + identifier: property.notFound + count: 1 + path: ../library/MedEx/API.php + - message: '#^Access to an undefined property MedExApi\\Setup\:\:\$lastError\.$#' + identifier: property.notFound + count: 1 + path: ../library/MedEx/API.php + - message: '#^Call to static method NWeekdayOfMonth\(\) on an unknown class MedExApi\\Date_Calc\.$#' + identifier: class.notFound + count: 1 + path: ../library/MedEx/API.php + - message: '#^Class MedExApi\\Base referenced with incorrect case\: MedExApi\\base\.$#' + identifier: class.nameCase + count: 2 + path: ../library/MedEx/API.php + - message: '#^Instantiated class MedExApi\\DateTime not found\.$#' + identifier: class.notFound + count: 2 + path: ../library/MedEx/API.php + - message: '#^Undefined variable\: \$form_patient_id$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Undefined variable\: \$form_patient_name$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Undefined variable\: \$prog$#' + identifier: variable.undefined + count: 3 + path: ../library/MedEx/API.php + - message: '#^Undefined variable\: \$setting_selectors$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Undefined variable\: \$userid$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$deletes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$events on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$expired might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$facility might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/MedEx/API.php + - message: '#^Variable \$form_patient_id in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$form_patient_name in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$icon might not be defined\.$#' + identifier: variable.undefined + count: 13 + path: ../library/MedEx/API.php + - message: '#^Variable \$last_col_width might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$no_fu might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$no_interval might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$pid_list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$provider might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/MedEx/API.php + - message: '#^Variable \$ptkr_future_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$result2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$setting_selectors in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$tell_MedEx might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$today might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/MedEx/API.php + - message: '#^Variable \$MedEx might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/MedEx.php + - message: '#^Variable \$result4 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/adminacl_ajax.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/adminacl_ajax.php + - message: '#^Undefined variable\: \$default$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/code_attributes_ajax.php + - message: '#^Variable \$fileroot might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/ajax/code_attributes_ajax.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/ajax/dated_reminders_counter.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/ajax/easipro_util.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/facility_ajax_code.php + - message: '#^Variable \$name_alt might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../library/ajax/graphs.php + - message: '#^Variable \$titleGraphLine1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/graphs.php + - message: '#^Variable \$titleGraphLine2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/graphs.php + - message: '#^Instantiated class TwigContainer not found\.$#' + identifier: class.notFound + count: 1 + path: ../library/ajax/immunization_export.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/messages/validate_messages_document_ajax.php + - message: '#^Variable \$twig in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../library/ajax/messages/validate_messages_document_ajax.php + - message: '#^Undefined variable\: \$bgcolor$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/payment_ajax.php + - message: '#^Variable \$StringToAppend might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/ajax/payment_ajax.php + - message: '#^Variable \$StringToAppend2 might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/ajax/payment_ajax.php + - message: '#^Variable \$bgcolor on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../library/ajax/payment_ajax.php + - message: '#^Variable \$patient_code might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../library/ajax/payment_ajax.php + - message: '#^Variable \$patient_code_complete might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/payment_ajax.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/set_pt.php + - message: '#^Variable \$isPortal on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../library/ajax/upload.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/ajax/upload.php + - message: '#^Variable \$rtn might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/upload.php + - message: '#^Undefined variable\: \$provider$#' + identifier: variable.undefined + count: 1 + path: ../library/amc.php + - message: '#^Variable \$provider in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../library/amc.php + - message: '#^Undefined variable\: \$pid$#' + identifier: variable.undefined + count: 2 + path: ../library/api.inc.php + - message: '#^Variable \$res in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../library/appointments.inc.php + - message: '#^Access to undefined constant procedure\:\:DIALYSIS_SERVICE\.$#' + identifier: classConstant.notFound + count: 1 + path: ../library/classes/ClinicalTypes/codes.php + - message: '#^Access to undefined constant procedure\:\:INFLU_VACCINE\.$#' + identifier: classConstant.notFound + count: 1 + path: ../library/classes/ClinicalTypes/codes.php + - message: '#^Access to undefined constant procedure\:\:PNEUMOCOCCAL_VACCINE\.$#' + identifier: classConstant.notFound + count: 1 + path: ../library/classes/ClinicalTypes/codes.php + - message: '#^Class procedure referenced with incorrect case\: Procedure\.$#' + identifier: class.nameCase + count: 3 + path: ../library/classes/ClinicalTypes/codes.php + - message: '#^Variable \$inline_arg might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/Controller.class.php + - message: '#^Access to an undefined property CouchDB\:\:\$body\.$#' + identifier: property.notFound + count: 1 + path: ../library/classes/CouchDB.class.php + - message: '#^Access to an undefined property CouchDB\:\:\$dbase\.$#' + identifier: property.notFound + count: 6 + path: ../library/classes/CouchDB.class.php + - message: '#^Access to an undefined property CouchDB\:\:\$headers\.$#' + identifier: property.notFound + count: 1 + path: ../library/classes/CouchDB.class.php + - message: '#^Access to an undefined property CouchDB\:\:\$host\.$#' + identifier: property.notFound + count: 6 + path: ../library/classes/CouchDB.class.php + - message: '#^Access to an undefined property CouchDB\:\:\$pass\.$#' + identifier: property.notFound + count: 2 + path: ../library/classes/CouchDB.class.php + - message: '#^Access to an undefined property CouchDB\:\:\$port\.$#' + identifier: property.notFound + count: 5 + path: ../library/classes/CouchDB.class.php + - message: '#^Access to an undefined property CouchDB\:\:\$user\.$#' + identifier: property.notFound + count: 2 + path: ../library/classes/CouchDB.class.php + - message: '#^Variable \$thumbnail_data might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/classes/Document.class.php + - message: '#^Constructor of class InsuranceCompany has an unused parameter \$prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../library/classes/InsuranceCompany.class.php + - message: '#^Constructor of class InsuranceNumbers has an unused parameter \$prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../library/classes/InsuranceNumbers.class.php + - message: '#^Class Note referenced with incorrect case\: note\.$#' + identifier: class.nameCase + count: 1 + path: ../library/classes/Note.class.php + - message: '#^Function NumberToText not found\.$#' + identifier: function.notFound + count: 1 + path: ../library/classes/NumberToText.class.php + - message: '#^Undefined variable\: \$string$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/OFX.class.php + - message: '#^Constructor of class Person has an unused parameter \$prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../library/classes/Person.class.php + - message: '#^Constructor of class Pharmacy has an unused parameter \$prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../library/classes/Pharmacy.class.php + - message: '#^Variable \$arr might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/Prescription.class.php + - message: '#^Variable \$string might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/Prescription.class.php + - message: '#^Constructor of class Provider has an unused parameter \$prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../library/classes/Provider.class.php + - message: '#^Call to an undefined method HTML_TreeMenu_Presentation\:\:toHTML\(\)\.$#' + identifier: method.notFound + count: 1 + path: ../library/classes/TreeMenu.php + - message: '#^Constructor of class X12Partner has an unused parameter \$prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../library/classes/X12Partner.class.php + - message: '#^Variable \$b2 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/classes/fpdf/fpdf.php + - message: '#^Variable \$cmapkey might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/classes/fpdf/fpdf.php + - message: '#^Variable \$ls might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/fpdf/fpdf.php + - message: '#^Variable \$ret might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/classes/postmaster.php + - message: '#^Variable \$sql might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/rulesets/Amc/library/AbstractAmcReport.php + - message: '#^Access to an undefined property smtp_class\:\:\$pending_sender\.$#' + identifier: property.notFound + count: 2 + path: ../library/classes/smtp/smtp.php + - message: '#^Constant SASL_PLAIN_EXIM_DOCUMENTATION_MODE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../library/classes/smtp/smtp.php + - message: '#^Constant SASL_PLAIN_EXIM_MODE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../library/classes/smtp/smtp.php + - message: '#^Access to an undefined property Thumbnail\:\:\$max_size\.$#' + identifier: property.notFound + count: 4 + path: ../library/classes/thumbnail/Thumbnail.class.php + - message: '#^Variable \$new_file might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/thumbnail/ThumbnailGenerator.php + - message: '#^Variable \$types_support might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/thumbnail/ThumbnailGenerator.php + - message: '#^Variable \$excluded might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/clinical_rules.php + - message: '#^Variable \$new_conflicts in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/clinical_rules.php + - message: '#^Variable \$pass_filter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/clinical_rules.php + - message: '#^Variable \$patientNumber might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/clinical_rules.php + - message: '#^Variable \$percentage might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/clinical_rules.php + - message: '#^Variable \$temp_track_pass might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/clinical_rules.php + - message: '#^Variable \$contraception_billing_code in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/contraception_billing_scan.inc.php + - message: '#^Variable \$contraception_billing_prov in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/contraception_billing_scan.inc.php + - message: '#^Variable \$end might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/csv_like_join.php + - message: '#^Variable \$st might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/custom_template/add_custombutton.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/custom_template/custom_template.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/custom_template/custom_template.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/custom_template/custom_template.php + - message: '#^Variable \$filter_context on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../library/custom_template/personalize.php + - message: '#^Variable \$sel might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/custom_template/share_template.php + - message: '#^Variable \$sendDMTo on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../library/dated_reminder_functions.php + - message: '#^Variable \$dn might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/deletedrug.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/dicom_frame.php + - message: '#^Variable \$body_text on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../library/direct_message_check.inc.php + - message: '#^Variable \$help_icon_title might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/display_help_icon_inc.php + - message: '#^Undefined variable\: \$ebo7$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_271_html.php + - message: '#^Variable \$cls might not be defined\.$#' + identifier: variable.undefined + count: 26 + path: ../library/edihistory/edih_271_html.php + - message: '#^Variable \$dmg03 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_271_html.php + - message: '#^Variable \$loopid might not be defined\.$#' + identifier: variable.undefined + count: 57 + path: ../library/edihistory/edih_271_html.php + - message: '#^Variable \$bht might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_277_html.php + - message: '#^Variable \$cls might not be defined\.$#' + identifier: variable.undefined + count: 42 + path: ../library/edihistory/edih_277_html.php + - message: '#^Variable \$loopid might not be defined\.$#' + identifier: variable.undefined + count: 33 + path: ../library/edihistory/edih_277_html.php + - message: '#^Variable \$qtystr might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/edihistory/edih_277_html.php + - message: '#^Variable \$sc204 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_277_html.php + - message: '#^Variable \$sc304 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_277_html.php + - message: '#^Undefined variable\: \$dtp03$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_278_html.php + - message: '#^Variable \$ar01 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_278_html.php + - message: '#^Variable \$dep_eb_html might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_278_html.php + - message: '#^Variable \$elem03 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_278_html.php + - message: '#^Variable \$elem05 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_278_html.php + - message: '#^Variable \$loopid might not be defined\.$#' + identifier: variable.undefined + count: 68 + path: ../library/edihistory/edih_278_html.php + - message: '#^Variable \$sbr_eb_html might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_278_html.php + - message: '#^Undefined variable\: \$cur03$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Undefined variable\: \$cur04$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Undefined variable\: \$n405$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$ca might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$cd might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$cls might not be defined\.$#' + identifier: variable.undefined + count: 34 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$cq might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$cr might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$loopid might not be defined\.$#' + identifier: variable.undefined + count: 38 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$plb_amt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$plb_rc might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$plb_rt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$plb_tr might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$svcfee might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$svcpmt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$ackcode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$acknote might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$fg_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$fg_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$sub_icn might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$subdate might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$substn might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$subtime might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$subtype might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_997_error.php + - message: '#^Undefined variable\: \$file_type$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Undefined variable\: \$frow$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_archive.php + - message: '#^Undefined variable\: \$msg$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$arch_fn might not be defined\.$#' + identifier: variable.undefined + count: 12 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$archive_dir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$car2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$car_cmb_unique might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$h might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$h_ar might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$isrn might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$params might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$tmp_dir might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$type_ar might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Undefined variable\: \$tp$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_data.php + - message: '#^Variable \$dtpd2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_data.php + - message: '#^Variable \$dtpdlbl might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_data.php + - message: '#^Variable \$errct might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_data.php + - message: '#^Variable \$fn might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_csv_data.php + - message: '#^Variable \$trc might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_csv_data.php + - message: '#^Undefined variable\: \$file_type$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_inc.php + - message: '#^Variable \$enc might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_inc.php + - message: '#^Variable \$pe might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_inc.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_inc.php + - message: '#^Variable \$rws might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_inc.php + - message: '#^Undefined variable\: \$rtp$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$bht03syn might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$bnfteq might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$cdx might not be defined\.$#' + identifier: variable.undefined + count: 39 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$err_seg might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$ft might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$gsdate might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$have_pt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$hl might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$isrsp might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$payer_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$payer_name might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$ptname might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$rej_ct might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$rqst might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$rspdate might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$rspsttype might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$rsptype might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$sar might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$svcdate might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$_FILES in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../library/edihistory/edih_io.php + - message: '#^Variable \$_GET in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../library/edihistory/edih_io.php + - message: '#^Variable \$qs might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_io.php + - message: '#^Variable \$str_html might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_io.php + - message: '#^Variable \$has_eb might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_segments.php + - message: '#^Variable \$has_iii might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_segments.php + - message: '#^Variable \$rspfile might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_segments.php + - message: '#^Variable \$rspicn might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_segments.php + - message: '#^Variable \$stn might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/edih_segments.php + - message: '#^Undefined variable\: \$err$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_uploads.php + - message: '#^Undefined variable\: \$segment_ar$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Undefined variable\: \$st_pos$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$bht_pos might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$dr might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$ds might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$dt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$env_ar might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$gs_ct might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$gs_fid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$gs_start might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$gsn might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$icn might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$seg_ar might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$segidx might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$stn might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$ta1_icn in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Undefined variable\: \$de$#' + identifier: variable.undefined + count: 18 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Undefined variable\: \$delimiter3$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Undefined variable\: \$ds$#' + identifier: variable.undefined + count: 4 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$bpr02 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$check_amount might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$check_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$chk might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$ck might not be defined\.$#' + identifier: variable.undefined + count: 52 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$de might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$gs_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$i might not be defined\.$#' + identifier: variable.undefined + count: 27 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$loop might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$loopid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$lx01 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$out might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$plbar might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$pmt_html might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$seg might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$segid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Constant NET_SFTP_LOCAL_FILE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Constant NET_SFTP_TYPE_REGULAR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Function edih_sftp_connect not found\.$#' + identifier: function.notFound + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Undefined variable\: \$f_ct$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Undefined variable\: \$uplkey$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$actn might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$dir_to might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$fdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$host might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$ldir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$p_ct might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$pass might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$pdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$port might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$sftp_hosts might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$site in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$current_state might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/expand_contract_inc.php + - message: '#^Variable \$s on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../library/formdata.inc.php + - message: '#^Variable \$where might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/forms.inc.php + - message: '#^Variable \$text on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../library/htmlspecialchars.inc.php + - message: '#^Undefined variable\: \$CPR$#' + identifier: variable.undefined + count: 2 + path: ../library/ippf_issues.inc.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/ippf_issues.inc.php + - message: '#^Variable \$datetimepicker_formatInput might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/js/xl/jquery-datetimepicker-2-5-4.js.php + - message: '#^Variable \$datetimepicker_showseconds might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/js/xl/jquery-datetimepicker-2-5-4.js.php + - message: '#^Variable \$datetimepicker_timepicker might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/js/xl/jquery-datetimepicker-2-5-4.js.php + - message: '#^Undefined variable\: \$disabled$#' + identifier: variable.undefined + count: 1 + path: ../library/options.inc.php + - message: '#^Undefined variable\: \$lbfonchange$#' + identifier: variable.undefined + count: 1 + path: ../library/options.inc.php + - message: '#^Undefined variable\: \$list_id_esc$#' + identifier: variable.undefined + count: 1 + path: ../library/options.inc.php + - message: '#^Undefined variable\: \$under$#' + identifier: variable.undefined + count: 1 + path: ../library/options.inc.php + - message: '#^Variable \$encounterResult in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/options.inc.php + - message: '#^Variable \$group_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/options.inc.php + - message: '#^Variable \$lrow might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/options.inc.php + - message: '#^Variable \$metadata might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/options.inc.php + - message: '#^Variable \$pdrow in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../library/options.inc.php + - message: '#^Variable \$tmp in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/options.inc.php + - message: '#^Variable \$insarr might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/patient.inc.php + - message: '#^Variable \$returnval might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../library/patient.inc.php + - message: '#^Variable \$AccountCode might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/payment.inc.php + - message: '#^Variable \$AdjustString might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/payment.inc.php + - message: '#^Variable \$all might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/pnotes.inc.php + - message: '#^Variable \$all might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/registry.inc.php + - message: '#^Variable \$category on left side of \?\?\= is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../library/registry.inc.php + - message: '#^Function fetch_reminders invoked with 1 parameter, 2 required\.$#' + identifier: arguments.count + count: 4 + path: ../library/reminders.php + - message: '#^Variable \$tempCollectReminders might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/reminders.php + - message: '#^Variable \$update_rem_log might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/reminders.php + - message: '#^Variable \$where might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/reminders.php + - message: '#^Variable \$arcount might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/report.inc.php + - message: '#^Variable \$ret might not be defined\.$#' + identifier: variable.undefined + count: 15 + path: ../library/report.inc.php + - message: '#^Variable \$retar might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/report.inc.php + - message: '#^Variable \$pass_sql might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/report_database.inc.php + - message: '#^Method Smarty_Compiler_Legacy\:\:_compile_tag\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Method Smarty_Compiler_Legacy\:\:_pop_tag\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$_output might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$arg_list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$attr_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$compiled_ref might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$expr might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$include_file might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$last_token might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$plugin_func might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$return might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Undefined variable\: \$dummy$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php + - message: '#^Variable \$_debug_start_time might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php + - message: '#^Variable \$_included_tpls_idx might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php + - message: '#^Variable \$_smarty_results might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php + - message: '#^Variable \$debug_start_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php + - message: '#^Variable \$included_tpls_idx might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php + - message: '#^Variable \$_readable might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/internals/core.get_php_resource.php + - message: '#^Variable \$_template_source might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/internals/core.get_php_resource.php + - message: '#^Variable \$_message might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/internals/core.load_plugins.php + - message: '#^Variable \$_plugin_func might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/internals/core.load_plugins.php + - message: '#^Variable \$debug_start_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/internals/core.process_cached_inserts.php + - message: '#^Function smarty_core_run_insert_handler\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../library/smarty_legacy/smarty/internals/core.run_insert_handler.php + - message: '#^Variable \$_debug_start_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/internals/core.run_insert_handler.php + - message: '#^Variable \$_config_vars might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/smarty_legacy/smarty/plugins/function.config_load.php + - message: '#^Variable \$_debug_start_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.config_load.php + - message: '#^Undefined variable\: \$_var_compiled$#' + identifier: variable.undefined + count: 2 + path: ../library/smarty_legacy/smarty/plugins/function.eval.php + - message: '#^Variable \$accept in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.fetch.php + - message: '#^Function smarty_function_html_checkboxes\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_checkboxes.php + - message: '#^Variable \$values in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_checkboxes.php + - message: '#^Variable \$file in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_image.php + - message: '#^Variable \$options in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_options.php + - message: '#^Variable \$values in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_options.php + - message: '#^Function smarty_function_html_radios\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_radios.php + - message: '#^Variable \$_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_radios.php + - message: '#^Variable \$values in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_radios.php + - message: '#^Variable \$day_empty in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_select_date.php + - message: '#^Variable \$month_empty in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_select_date.php + - message: '#^Variable \$year_empty in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_select_date.php + - message: '#^Undefined variable\: \$loop$#' + identifier: variable.undefined + count: 2 + path: ../library/smarty_legacy/smarty/plugins/function.html_table.php + - message: '#^Variable \$caption in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_table.php + - message: '#^Variable \$function in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.popup.php + - message: '#^Variable \$inarray in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.popup.php + - message: '#^Variable \$text in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.popup.php + - message: '#^Function smarty_function_popup_init\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.popup_init.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/plugins/modifier.date_format.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/specialty_forms.php + - message: '#^Variable \$bcodes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/spreadsheet.inc.php + - message: '#^Variable \$cellstatic might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/spreadsheet.inc.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/spreadsheet.inc.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/spreadsheet.inc.php + - message: '#^Variable \$saveid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/spreadsheet.inc.php + - message: '#^Variable \$spreadsheet_form_name might not be defined\.$#' + identifier: variable.undefined + count: 21 + path: ../library/spreadsheet.inc.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/spreadsheet.inc.php + - message: '#^Variable \$handle1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/standard_tables_capture.inc.php + - message: '#^Variable \$new_str might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/standard_tables_capture.inc.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/translation.inc.php + - message: '#^Variable \$use_validate_js might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/validation/validation_script.js.php + - message: '#^Variable \$check_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/batch_phone_notification.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/batch_phone_notification.php + - message: '#^Variable \$ssql might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/batch_phone_notification.php + - message: '#^Variable \$EMAIL_NOTIFICATION_HOUR might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../modules/sms_email_reminder/cron_email_notification.php + - message: '#^Variable \$data_info might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/cron_email_notification.php + - message: '#^Variable \$patient_info might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/cron_email_notification.php + - message: '#^Variable \$smsgateway_info might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/cron_email_notification.php + - message: '#^Path in include\(\) "getmxrr\.php" is not a file or it does not exist\.$#' + identifier: include.fileNotFound + count: 1 + path: ../modules/sms_email_reminder/cron_functions.php + - message: '#^Class sms constructor invoked with 3 parameters, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../modules/sms_email_reminder/cron_sms_notification.php + - message: '#^Variable \$SMS_NOTIFICATION_HOUR might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../modules/sms_email_reminder/cron_sms_notification.php + - message: '#^Variable \$data_info might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/cron_sms_notification.php + - message: '#^Variable \$patient_info might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/cron_sms_notification.php + - message: '#^Variable \$smsgateway_info might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/cron_sms_notification.php + - message: '#^Access to an undefined property sms\:\:\$base\.$#' + identifier: property.notFound + count: 5 + path: ../modules/sms_email_reminder/sms_clickatell.php + - message: '#^Access to an undefined property sms\:\:\$base_s\.$#' + identifier: property.notFound + count: 3 + path: ../modules/sms_email_reminder/sms_clickatell.php + - message: '#^Method sms\:\:_send_sock\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../modules/sms_email_reminder/sms_tmb4.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/sms_tmb4.php + - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../portal/account/account.lib.php + - message: '#^Variable \$mname on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../portal/account/account.lib.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/account/account.php + - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../portal/account/index_reset.php + - message: '#^Variable \$portalRegistrationAuthorization might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/account/register.php + - message: '#^Variable \$hiddenLanguageField might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/account/verify.php + - message: '#^Variable \$result2 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/account/verify.php + - message: '#^Variable \$result3 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/account/verify.php + - message: '#^Variable \$eid in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 3 + path: ../portal/add_edit_event_user.php + - message: '#^Variable \$event_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/add_edit_event_user.php + - message: '#^Variable \$insert might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/add_edit_event_user.php + - message: '#^Variable \$patientname might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/add_edit_event_user.php + - message: '#^Variable \$providers_current might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/add_edit_event_user.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/add_edit_event_user.php + - message: '#^Variable \$starttime might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/add_edit_event_user.php + - message: '#^Variable \$providerid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/find_appt_popup_user.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/find_appt_popup_user.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_allergies.php + - message: '#^Variable \$class might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_amendments.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_amendments.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_lab_results.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_medications.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_patient_documents.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_patient_documents.php + - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 2 + path: ../portal/get_patient_info.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_patient_info.php + - message: '#^Variable \$userData in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../portal/get_patient_info.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_prescriptions.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_pro.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_problems.php + - message: '#^Variable \$insurance_data_array might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/get_profile.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../portal/get_profile.php + - message: '#^Variable \$landingpage might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/home.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../portal/home.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/home.php + - message: '#^Variable \$defaultLangID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/index.php + - message: '#^Variable \$defaultLangName might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/index.php + - message: '#^Variable \$languageRegistration on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../portal/index.php + - message: '#^Variable \$one_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/index.php + - message: '#^Variable \$redirectUrl in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 3 + path: ../portal/index.php + - message: '#^Variable \$result2 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/index.php + - message: '#^Variable \$result3 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/index.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/lib/doc_lib.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/lib/patient_groups.php + - message: '#^Variable \$ccaudit might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/lib/paylib.php + - message: '#^Variable \$invoice might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/lib/paylib.php + - message: '#^Variable \$response might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/lib/paylib.php + - message: '#^Variable \$landingpage might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/logout.php + - message: '#^Variable \$owner in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../portal/messaging/handle_note.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/messaging/handle_note.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/messaging/messages.php + - message: '#^Variable \$resultpd on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../portal/messaging/messages.php + - message: '#^Variable \$resultusers on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../portal/messaging/messages.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/messaging/messages.php + - message: '#^Instantiated class OpenEMR\\PatientPortal\\Chat\\ChatController not found\.$#' + identifier: class.notFound + count: 1 + path: ../portal/messaging/secure_chat.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/SavantRenderEngine\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/_app_config.php + - message: '#^Instantiated class specify not found\.$#' + identifier: class.notFound + count: 1 + path: ../portal/patient/_global_config.php + - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseConfig\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/_global_config.php + - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/_global_config.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/GenericRouter\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/_global_config.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/ObserveToSmarty\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/_global_config.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/PortalController\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/_global_config.php + - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/_machine_config.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/ConnectionSetting\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/_machine_config.php + - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/patient/_machine_config.php + - message: '#^Method Savant3_Filter_trimwhitespace\:\:replace\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/savant/Savant3/resources/Savant3_Filter_trimwhitespace.php + - message: '#^Method parseCSV\:\:_check_count\(\) should return special but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/util/parsecsv.lib.php + - message: '#^Method parseCSV\:\:encoding\(\) should return nothing but return statement is missing\.$#' + identifier: return.missing + count: 2 + path: ../portal/patient/fwk/libs/util/parsecsv.lib.php + - message: '#^Function mysql_affected_rows not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_close not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_error not found\.$#' + identifier: function.notFound + count: 4 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_fetch_assoc not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_free_result not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_insert_id not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_ping not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_query not found\.$#' + identifier: function.notFound + count: 2 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_select_db not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_set_charset not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseConfig\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseException\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Path in require_once\(\) "verysimple/DB/ISqlFunction\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_ping not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL_PDO.php + - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseConfig\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL_PDO.php + - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseException\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL_PDO.php + - message: '#^Path in require_once\(\) "verysimple/DB/ISqlFunction\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL_PDO.php + - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseConfig\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQLi.php + - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseException\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQLi.php + - message: '#^Path in require_once\(\) "verysimple/DB/ISqlFunction\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQLi.php + - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseConfig\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/SQLite.php + - message: '#^Path in require_once\(\) "verysimple/DB/DatabaseException\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/SQLite.php + - message: '#^Path in require_once\(\) "verysimple/DB/ISqlFunction\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/SQLite.php + - message: '#^Undefined variable\: \$attachment$#' + identifier: variable.undefined + count: 4 + path: ../portal/patient/fwk/libs/verysimple/HTTP/FileUpload.php + - message: '#^Path in require_once\(\) "verysimple/String/VerySimpleStringUtil\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 2 + path: ../portal/patient/fwk/libs/verysimple/HTTP/RequestUtil.php + - message: '#^Variable \$_POST in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../portal/patient/fwk/libs/verysimple/HTTP/RequestUtil.php + - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/HTTP/UrlWriter.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/ActionRouter\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/HTTP/UrlWriter.php + - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/ActionRouter.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/IRouter\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/ActionRouter.php + - message: '#^Path in require_once\(\) "verysimple/Util/UrlWriterMode\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/ActionRouter.php + - message: '#^Access to an undefined property CacheMemCache\:\:\$LastServerError\.$#' + identifier: property.notFound + count: 4 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/CacheMemCache.php + - message: '#^Path in require_once\(\) "verysimple/Util/ExceptionThrower\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/CacheMemCache.php + - message: '#^Method CacheNoCache\:\:Set\(\) should return VARIANT but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/CacheNoCache.php + - message: '#^Method CacheRam\:\:Set\(\) should return VARIANT but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/CacheRam.php + - message: '#^Path in require_once\(\) "verysimple/IO/Includer\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/Criteria.php + - message: '#^Path in include_once\(\) "verysimple/DB/DataDriver/MySQL\.php" is not a file or it does not exist\.$#' + identifier: includeOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataAdapter.php + - message: '#^Path in include_once\(\) "verysimple/DB/DataDriver/MySQLi\.php" is not a file or it does not exist\.$#' + identifier: includeOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataAdapter.php + - message: '#^Path in include_once\(\) "verysimple/DB/DataDriver/SQLite\.php" is not a file or it does not exist\.$#' + identifier: includeOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataAdapter.php + - message: '#^Path in require_once\(\) "verysimple/DB/DataDriver/IDataDriver\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataAdapter.php + - message: '#^Path in require_once\(\) "verysimple/IO/Includer\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataAdapter.php + - message: '#^Access to an undefined property DataSet\:\:\$_total\.$#' + identifier: property.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataSet.php + - message: '#^Path in require_once\(\) "verysimple/Util/ExceptionFormatter\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataSet.php + - message: '#^Class GenericRouter constructor invoked with 0 parameters, 3 required\.$#' + identifier: arguments.count + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/Dispatcher.php + - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/Dispatcher.php + - message: '#^Path in require_once\(\) "verysimple/Util/ExceptionThrower\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/Dispatcher.php + - message: '#^Call to static method createWriter\(\) on an unknown class PHPExcel_IOFactory\.$#' + identifier: class.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/ExportUtility.php + - message: '#^Instantiated class PHPExcel not found\.$#' + identifier: class.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/ExportUtility.php + - message: '#^Path in require_once\(\) "PEAR/PHPExcel\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/ExportUtility.php + - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/GenericRouter.php + - message: '#^Access to an undefined property MockRouter\:\:\$delim\.$#' + identifier: property.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/MockRouter.php + - message: '#^Access to an undefined property MockRouter\:\:\$stripApi\.$#' + identifier: property.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/MockRouter.php + - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/ObserveToFile.php + - message: '#^Access to an undefined property PHPRenderEngine\:\:\$templatePath\.$#' + identifier: property.notFound + count: 2 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PHPRenderEngine.php + - message: '#^Method Phreezable\:\:__serialize\(\) should return array\ but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/Phreezable.php + - message: '#^Method Phreezer\:\:GetPrimaryKeyMap\(\) should return KeyMap but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/Phreezer.php + - message: '#^Path in require_once\(\) "verysimple/IO/Includer\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/Phreezer.php + - message: '#^Class GenericRouter constructor invoked with 0 parameters, 3 required\.$#' + identifier: arguments.count + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Class IRSSFeedItem not found\.$#' + identifier: class.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Instantiated class RSS_Writer not found\.$#' + identifier: class.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Path in require_once\(\) "verysimple/Authentication/Auth401\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Path in require_once\(\) "verysimple/Authentication/Authenticator\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 2 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Path in require_once\(\) "verysimple/Authentication/IAuthenticatable\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Path in require_once\(\) "verysimple/HTTP/BrowserDevice\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Path in require_once\(\) "verysimple/HTTP/Context\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Path in require_once\(\) "verysimple/RSS/IRSSFeedItem\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Path in require_once\(\) "verysimple/RSS/Writer\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Path in require_once\(\) "verysimple/String/VerySimpleStringUtil\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Method Reporter\:\:__serialize\(\) should return array\ but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/Reporter.php + - message: '#^Path in require_once\(\) "savant/Savant3\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/SavantRenderEngine.php + - message: '#^Constructor of class SimpleRouter has an unused parameter \$appRootUrl\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/SimpleRouter.php + - message: '#^Method SimpleRouter\:\:GetUri\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/SimpleRouter.php + - message: '#^Path in require_once\(\) "verysimple/HTTP/RequestUtil\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/SimpleRouter.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/IRouter\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/SimpleRouter.php + - message: '#^Method VerySimpleStringUtil\:\:unicode_entity_replace\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/verysimple/String/VerySimpleStringUtil.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/CacheMemCache\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Util/MemCacheProxy.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Dispatcher\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/index.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/PortalController\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Controller/AppBasePortalController.php + - message: '#^Path in require_once\(\) "Model/OnsiteActivityView\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Controller/OnsiteActivityViewController.php + - message: '#^Path in require_once\(\) "Model/OnsiteDocument\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Controller/OnsiteDocumentController.php + - message: '#^Variable \$errors on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../portal/patient/libs/Controller/OnsiteDocumentController.php + - message: '#^Path in require_once\(\) "Model/OnsitePortalActivity\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Controller/OnsitePortalActivityController.php + - message: '#^Path in require_once\(\) "Model/Patient\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Controller/PatientController.php + - message: '#^Variable \$output might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/patient/libs/Controller/PatientController.php + - message: '#^Path in require_once\(\) "Model/Patient\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Controller/PortalPatientController.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Criteria\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/OnsiteActivityViewCriteriaDAO.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Phreezable\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/OnsiteActivityViewDAO.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/OnsiteActivityViewMap-query.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap2\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/OnsiteActivityViewMap-query.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/OnsiteActivityViewMap.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap2\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/OnsiteActivityViewMap.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Criteria\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/OnsiteDocumentCriteriaDAO.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Phreezable\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/OnsiteDocumentDAO.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/OnsiteDocumentMap.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap2\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/OnsiteDocumentMap.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Criteria\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/OnsitePortalActivityCriteriaDAO.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Phreezable\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/OnsitePortalActivityDAO.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/OnsitePortalActivityMap.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap2\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/OnsitePortalActivityMap.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Criteria\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/PatientCriteriaDAO.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Phreezable\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/PatientDAO.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/PatientMap.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap2\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/PatientMap.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Criteria\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/UserCriteriaDAO.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Phreezable\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/UserDAO.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/UserMap.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/IDaoMap2\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Model/DAO/UserMap.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Reporter\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Reporter/OnsiteActivityViewReporter-query.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Reporter\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Reporter/OnsiteActivityViewReporter.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Reporter\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Reporter/OnsiteDocumentReporter.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Reporter\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Reporter/OnsitePortalActivityReporter.php + - message: '#^Path in require_once\(\) "verysimple/Phreeze/Reporter\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/libs/Reporter/PatientReporter.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/patient/templates/DefaultError404.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../portal/patient/templates/DefaultErrorFatal.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../portal/patient/templates/OnsiteActivityViewListView.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 14 + path: ../portal/patient/templates/OnsiteDocumentListView.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../portal/patient/templates/OnsitePortalActivityListView.tpl.php + - message: '#^Path in require_once\(\) "\.\./\.\./library/options\.inc\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/templates/PatientListView.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 14 + path: ../portal/patient/templates/PatientListView.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../portal/patient/templates/ProviderHome.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/patient/templates/_FormsHeader.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../portal/patient/templates/_Header.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../portal/patient/templates/_modalFormHeader.tpl.php + - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../portal/portal_payment.php + - message: '#^Variable \$form_pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/portal_payment.php + - message: '#^Variable \$payment_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/portal_payment.php + - message: '#^Variable \$payrow might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/portal_payment.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/portal_payment.php + - message: '#^Variable \$session_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/portal_payment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../portal/portal_payment.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/portal_payment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/document_downloads_action.php + - message: '#^Variable \$adj_amt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/pat_ledger.php + - message: '#^Variable \$last_year might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/report/pat_ledger.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../portal/report/pat_ledger.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/pat_ledger.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$from_file_tmp_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$insurance_data_array might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$prevIssueType might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$tmp_files_remove might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/portal_patient_report.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/portal_patient_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/report/portal_patient_report.php + - message: '#^Variable \$OE_SITES_BASE might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../setup.php + - message: '#^Variable \$config in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 2 + path: ../setup.php + - message: '#^Variable \$memory_limit_mb might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../setup.php + - message: '#^Variable \$randomsecret in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../setup.php + - message: '#^Variable \$sqlconf might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../setup.php + - message: '#^Variable \$state on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../setup.php + - message: '#^Undefined variable\: \$pid$#' + identifier: variable.undefined + count: 1 + path: ../sites/default/LBF/LBFathbf.plugin.php + - message: '#^Undefined variable\: \$pid$#' + identifier: variable.undefined + count: 1 + path: ../sites/default/LBF/LBFvbf.plugin.php + - message: '#^Variable \$desc might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sites/default/statement.inc.php + - message: '#^Variable \$dun_message might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../sites/default/statement.inc.php + - message: '#^Variable \$patientIdCc might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sphere/initial_response.php + - message: '#^Variable \$GLOBALS_METADATA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_patch.php + - message: '#^Variable \$v_database might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_patch.php + - message: '#^Variable \$v_major might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_patch.php + - message: '#^Variable \$v_minor might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_patch.php + - message: '#^Variable \$v_patch might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_patch.php + - message: '#^Variable \$v_realpatch might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../sql_patch.php + - message: '#^Variable \$v_tag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_patch.php + - message: '#^Variable \$GLOBALS_METADATA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_upgrade.php + - message: '#^Variable \$result2 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../sql_upgrade.php + - message: '#^Variable \$v_database might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_upgrade.php + - message: '#^Variable \$v_major might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_upgrade.php + - message: '#^Variable \$v_minor might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_upgrade.php + - message: '#^Variable \$v_patch might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_upgrade.php + - message: '#^Variable \$v_tag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_upgrade.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_upgrade.php + - message: '#^Variable \$query_part_day might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../src/Billing/BillingReport.php + - message: '#^Variable \$query_part_day1 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Billing/BillingReport.php + - message: '#^Variable \$row might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Billing/BillingUtilities.php + - message: '#^Variable \$msp might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Billing/Claim.php + - message: '#^Variable \$tmp in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Billing/Claim.php + - message: '#^Variable \$tmp might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Billing/Claim.php + - message: '#^Variable \$elog might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Billing/EDI270.php + - message: '#^Variable \$field in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Billing/EDI270.php + - message: '#^Variable \$responses in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Billing/EDI270.php + - message: '#^Variable \$returnval might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Billing/EDI270.php + - message: '#^Variable \$segmentcount might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Billing/EDI270.php + - message: '#^Variable \$MDY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Billing/Hcfa1500.php + - message: '#^Variable \$encounter_claim on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Billing/X125010837I.php + - message: '#^Variable \$allowed might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php + - message: '#^Variable \$columns might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php + - message: '#^Variable \$fld_target_criteria on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php + - message: '#^Variable \$message on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/ClinicalDecisionRules/Interface/RuleLibrary/Rule.php + - message: '#^Variable \$arr_group_titles might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Common/Acl/AclExtended.php + - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../src/Common/Auth/AuthUtils.php + - message: '#^Parameter \$previous of method OpenEMR\\Common\\Auth\\Exception\\OneTimeAuthException\:\:__construct\(\) has invalid type OpenEMR\\Common\\Auth\\Exception\\Throwable\.$#' + identifier: class.notFound + count: 1 + path: ../src/Common/Auth/Exception/OneTimeAuthException.php + - message: '#^Parameter \$previous of method OpenEMR\\Common\\Auth\\Exception\\OneTimeAuthExpiredException\:\:__construct\(\) has invalid type OpenEMR\\Common\\Auth\\Exception\\Throwable\.$#' + identifier: class.notFound + count: 1 + path: ../src/Common/Auth/Exception/OneTimeAuthExpiredException.php + - message: '#^Method OpenEMR\\Common\\Auth\\MfaUtils\:\:checkU2F\(\) should return bool but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../src/Common/Auth/MfaUtils.php + - message: '#^Variable \$response might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Common/Auth/MfaUtils.php + - message: '#^Variable \$this_contacts in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../src/Common/Auth/OpenIDConnect/Entities/ClientEntity.php + - message: '#^Variable \$client in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Common/Auth/OpenIDConnect/Grant/CustomPasswordGrant.php + - message: '#^Variable \$clients in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Common/Auth/OpenIDConnect/Repositories/ClientRepository.php + - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../src/Common/Auth/OpenIDConnect/Repositories/RefreshTokenRepository.php + - message: '#^Variable \$issues might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Common/Command/CreateReleaseChangelogCommand.php + - message: '#^Constructor of class OpenEMR\\Common\\Forms\\FormVitals has an unused parameter \$_prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../src/Common/Forms/FormVitals.php + - message: '#^Variable \$code_types in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../src/Common/Forms/Types/BillingCodeType.php + - message: '#^Variable \$tmp in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Common/Forms/Types/LocalProviderListType.php + - message: '#^Variable \$parts in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Common/Http/HttpRestParsedRoute.php + - message: '#^Variable \$test in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../src/Common/Layouts/LayoutsUtils.php + - message: '#^Access to an undefined property OpenEMR\\Common\\ORDataObject\\ContactAddress\:\:\$use\.$#' + identifier: property.notFound + count: 1 + path: ../src/Common/ORDataObject/ContactAddress.php + - message: '#^Call to an undefined method OpenEMR\\Common\\ORDataObject\\ORDataObject\:\:get_id\(\)\.$#' + identifier: method.notFound + count: 1 + path: ../src/Common/ORDataObject/ORDataObject.php + - message: '#^Variable \$enum might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Common/ORDataObject/ORDataObject.php + - message: '#^Variable \$values might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Common/ORDataObject/ORDataObject.php + - message: '#^Method OpenEMR\\Core\\Header\:\:readConfigFile\(\) should return array but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../src/Core/Header.php + - message: '#^Method OpenEMR\\Core\\Header\:\:setupHeader\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../src/Core/Header.php + - message: '#^Class OpenEMR\\Cqm\\CqmClient constructor invoked with 0 parameters, 2\-4 required\.$#' + identifier: arguments.count + count: 1 + path: ../src/Cqm/test.php + - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:usingHeaders\(\)\.$#' + identifier: staticMethod.notFound + count: 5 + path: ../src/Easipro/Easipro.php + - message: '#^Undefined variable\: \$row$#' + identifier: variable.undefined + count: 1 + path: ../src/Easipro/Easipro.php + - message: '#^Variable \$returnval might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Easipro/Easipro.php + - message: '#^Method OpenEMR\\Events\\Messaging\\SendNotificationEvent\:\:setSendNotificationMethod\(\) should return OpenEMR\\Events\\Messaging\\SendNotificationEvent but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../src/Events/Messaging/SendNotificationEvent.php + - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Events/Messaging/SendNotificationEvent.php + - message: '#^Access to an undefined property OpenEMR\\Gacl\\Gacl\:\:\$Cache_Lite\.$#' + identifier: property.notFound + count: 5 + path: ../src/Gacl/Gacl.php + - message: '#^Instantiated class OpenEMR\\Gacl\\Hashed_Cache_Lite not found\.$#' + identifier: class.notFound + count: 1 + path: ../src/Gacl/Gacl.php + - message: '#^Variable \$retarr might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Gacl/Gacl.php + - message: '#^Access to an undefined property OpenEMR\\Gacl\\GaclApi\:\:\$Cache_Lite\.$#' + identifier: property.notFound + count: 6 + path: ../src/Gacl/GaclApi.php + - message: '#^Undefined variable\: \$row_count$#' + identifier: variable.undefined + count: 1 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$groups_map_table might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$object_group_table might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$object_map_table might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$object_sections_table might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$object_type in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 7 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$retarr might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$table might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$where in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Gacl/GaclApi.php + - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' + identifier: staticMethod.notFound + count: 1 + path: ../src/MedicalDevice/MedicalDevice.php + - message: '#^Variable \$catEntry might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../src/Menu/MainMenuRole.php + - message: '#^Method OpenEMR\\Menu\\MenuRole\:\:displayMenuRoleSelector\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../src/Menu/MenuRole.php + - message: '#^Method OpenEMR\\Menu\\MenuRole\:\:getMenu\(\) should return array but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../src/Menu/MenuRole.php + - message: '#^Method OpenEMR\\Menu\\MenuRole\:\:getMenuRole\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../src/Menu/MenuRole.php + - message: '#^Variable \$action might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/OeUI/OemrUI.php + - message: '#^Variable \$action_href might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/OeUI/OemrUI.php + - message: '#^Variable \$action_title might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../src/OeUI/OemrUI.php + - message: '#^Variable \$frontSpecificRetail might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/PaymentProcessing/Sphere/SpherePayment.php + - message: '#^Variable \$trxcustidRetail might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/PaymentProcessing/Sphere/SpherePayment.php + - message: '#^Variable \$trxcustidRetailLicensekey might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/PaymentProcessing/Sphere/SpherePayment.php + - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:getCurlOptions\(\)\.$#' + identifier: staticMethod.notFound + count: 1 + path: ../src/Pharmacy/Services/ImportPharmacies.php + - message: '#^Variable \$zip might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Pharmacy/Services/ImportPharmacies.php + - message: '#^Class OpenEMR\\Services\\FHIR\\FhirDocRefService constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../src/RestControllers/FHIR/Operations/FhirOperationDocRefRestController.php + - message: '#^Variable \$exportWriter might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/RestControllers/FHIR/Operations/FhirOperationExportRestController.php + - message: '#^Variable \$outputResult might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/RestControllers/FHIR/Operations/FhirOperationExportRestController.php + - message: '#^Variable \$resource might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/RestControllers/FHIR/Operations/FhirOperationExportRestController.php + - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' + identifier: staticMethod.notFound + count: 1 + path: ../src/Rx/RxList.php + - message: '#^Variable \$all might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Rx/RxList.php + - message: '#^Variable \$ending might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Rx/RxList.php + - message: '#^Variable \$list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Rx/RxList.php + - message: '#^Variable \$my_data might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../src/Rx/RxList.php + - message: '#^Variable \$type might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Rx/RxList.php + - message: '#^Variable \$ct_id might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$enc_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$enc_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$encounter_for_forms in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$encounter_for_forms might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$encounter_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$end_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$facility_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$forms_encounters on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$id_data might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$immunization_date_value might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$list_id might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$med_pblm_begdate_value might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$med_pblm_enddate_value might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$o_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$oid_unit might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$pro_id might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$provider_id might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res3 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res6 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res_q_sel_allergies might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res_q_sel_encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res_q_sel_imm might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res_q_sel_med_pblm might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res_q_sel_vitals might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res_query_sel_fac might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$static_encounter in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$test on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$vitals_date_value might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$vitals_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$code might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateParse.php + - message: '#^Variable \$func_name in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 4 + path: ../src/Services/Cda/CdaTemplateParse.php + - message: '#^Variable \$reason_status on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/Cda/CdaTemplateParse.php + - message: '#^Variable \$result_status on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../src/Services/Cda/CdaTemplateParse.php + - message: '#^Variable \$value on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 4 + path: ../src/Services/Cda/CdaTemplateParse.php + - message: '#^Variable \$form_id in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Services/ClinicalNotesService.php + - message: '#^Variable \$code in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Services/CodeTypesService.php + - message: '#^Variable \$code on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 3 + path: ../src/Services/CodeTypesService.php + - message: '#^Variable \$tmp on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/CodeTypesService.php + - message: '#^Variable \$type on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 3 + path: ../src/Services/CodeTypesService.php + - message: '#^Variable \$valueset on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/CodeTypesService.php + - message: '#^Variable \$valueset_name on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/CodeTypesService.php + - message: '#^Variable \$attributes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/DecisionSupportInterventionService.php + - message: '#^Variable \$service might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/DecisionSupportInterventionService.php + - message: '#^Variable \$q_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/DocumentTemplates/DocumentTemplateRender.php + - message: '#^Variable \$group_list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/DocumentTemplates/DocumentTemplateService.php + - message: '#^Variable \$rtn might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/DocumentTemplates/DocumentTemplateService.php + - message: '#^Variable \$tid on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/DocumentTemplates/DocumentTemplateService.php + - message: '#^Undefined variable\: \$puuid$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/DrugService.php + - message: '#^Variable \$puuid in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../src/Services/DrugService.php + - message: '#^Variable \$code might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/FHIR/FhirImmunizationService.php + - message: '#^Variable \$display might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/FHIR/FhirImmunizationService.php + - message: '#^Variable \$class_object might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/FHIR/FhirResourcesService.php + - message: '#^Variable \$codeMapping in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../src/Services/FHIR/Observation/FhirObservationLaboratoryService.php + - message: '#^Variable \$parsed_reference in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Services/FHIR/UtilsService.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/InsuranceCompanyService.php + - message: '#^Variable \$return might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/LogoService.php + - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../src/Services/PatientAccessOnsiteService.php + - message: '#^Class OpenEMR\\Events\\Patient\\Summary\\PortalCredentialsTemplateDataFilterEvent constructor invoked with 2 parameters, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../src/Services/PatientAccessOnsiteService.php + - message: '#^Variable \$kernel in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Services/PatientAccessOnsiteService.php + - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/PatientPortalService.php + - message: '#^Variable \$days might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/PatientTrackerService.php + - message: '#^Variable \$hours might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/PatientTrackerService.php + - message: '#^Variable \$minutes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/PatientTrackerService.php + - message: '#^Variable \$returnval might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/PatientTrackerService.php + - message: '#^Variable \$area_code on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/PhoneNumberService.php + - message: '#^Variable \$foreignId on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/PhoneNumberService.php + - message: '#^Variable \$number on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/PhoneNumberService.php + - message: '#^Variable \$prefix on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/PhoneNumberService.php + - message: '#^Variable \$type on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/PhoneNumberService.php + - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/Qrda/Cat1.php + - message: '#^Variable \$flatArray on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/QuestionnaireResponseService.php + - message: '#^Variable \$v on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/QuestionnaireResponseService.php + - message: '#^Variable \$form in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Services/QuestionnaireService.php + - message: '#^Variable \$q_url might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/QuestionnaireService.php + - message: '#^Variable \$q_uuid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/QuestionnaireService.php + - message: '#^Variable \$DateValue on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/Utils/DateFormatterUtils.php + - message: '#^Variable \$newDate might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Utils/DateFormatterUtils.php + - message: '#^Variable \$records might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Utils/SQLUpgradeService.php + - message: '#^Variable \$subject in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Services/Utils/SQLUpgradeService.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../templates/super/rules/base/template/basic.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../templates/super/rules/base/template/criteria.php + - message: '#^Variable \$_redirect might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../templates/super/rules/base/template/redirect.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../templates/super/rules/controllers/alerts/list_actmgr.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../templates/super/rules/controllers/detail/view.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../templates/super/rules/controllers/edit/action.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../templates/super/rules/controllers/edit/add_criteria.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../templates/super/rules/controllers/edit/age.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 14 + path: ../templates/super/rules/controllers/edit/bucket.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 18 + path: ../templates/super/rules/controllers/edit/custom.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../templates/super/rules/controllers/edit/diagnosis.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../templates/super/rules/controllers/edit/intervals.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../templates/super/rules/controllers/edit/lifestyle.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../templates/super/rules/controllers/edit/sex.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../templates/super/rules/controllers/edit/simple_text_criteria.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../templates/super/rules/controllers/edit/summary.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../templates/super/rules/controllers/review/view.php + - message: '#^Caught class OpenEMR\\Tests\\E2e\\User\\Exception not found\.$#' + identifier: class.notFound + count: 1 + path: ../tests/Tests/E2e/BbCreateStaffTest.php + - message: '#^Instantiated class OpenEMR\\Tests\\E2e\\User\\Exception not found\.$#' + identifier: class.notFound + count: 1 + path: ../tests/Tests/E2e/BbCreateStaffTest.php + - message: '#^Class OpenEMR\\ClinicalDecisionRules\\Interface\\ActionRouter constructor invoked with 3 parameters, 2 required\.$#' + identifier: arguments.count + count: 3 + path: ../tests/Tests/Unit/ClinicalDecisionRules/ActionRouterTest.php + - message: '#^Class OpenEMR\\ClinicalDecisionRules\\Interface\\ActionRouter constructor invoked with 3 parameters, 2 required\.$#' + identifier: arguments.count + count: 1 + path: ../tests/Tests/Unit/ClinicalDecisionRules/ControllerRouterTest.php + - message: '#^Trying to mock an undefined method Execute\(\) on class stdClass\.$#' + identifier: phpunit.mockMethod + count: 1 + path: ../tests/Tests/Unit/Common/Logging/EventAuditLoggerTest.php + - message: '#^Trying to mock an undefined method ExecuteNoLog\(\) on class stdClass\.$#' + identifier: phpunit.mockMethod + count: 1 + path: ../tests/Tests/Unit/Common/Logging/EventAuditLoggerTest.php + - message: '#^Trying to mock an undefined method FetchRow\(\) on class stdClass\.$#' + identifier: phpunit.mockMethod + count: 3 + path: ../tests/Tests/Unit/Common/Logging/EventAuditLoggerTest.php + - message: '#^Trying to mock an undefined method Insert_ID\(\) on class stdClass\.$#' + identifier: phpunit.mockMethod + count: 1 + path: ../tests/Tests/Unit/Common/Logging/EventAuditLoggerTest.php + - message: '#^Trying to mock an undefined method qstr\(\) on class stdClass\.$#' + identifier: phpunit.mockMethod + count: 1 + path: ../tests/Tests/Unit/Common/Logging/EventAuditLoggerTest.php From 6a4e18c5ec73e0c755f6f65b28a9652aded1a58b Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Tue, 30 Dec 2025 15:16:28 -0500 Subject: [PATCH 029/139] Extend URLSearchParams refactoring to remaining first-party files (#9741) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Refactor manual URL parameter building to use URLSearchParams Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * Refactor additional files to use URLSearchParams Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * Refactor more interface files to use URLSearchParams Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * Fix code review issues: remove redundant line and use params.append for CSRF tokens Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> * Remove AI-generated code comments from URLSearchParams refactor 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 * Refactor additional files to use URLSearchParams for URL parameter building - portal/patient/scripts/app/onsiteactivityviews.js - portal/patient/scripts/app/onsitedocuments.js - portal/sign/assets/signer_api.js - interface/modules/zend_modules/public/js/application/sendTo.js - library/js/ajax_functions_writer.js - library/js/oeUI/insurance/EditPolicyScreenController.js - interface/modules/custom_modules/oe-module-comlink-telehealth (4 files) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 * Fix code review issues: use const consistently in URLSearchParams refactor - Change var to const for URLSearchParams and related variables - Extract inline URLSearchParams to const before use - Rename conflicting variable names (params → urlParams/dialogParams) - Remove unnecessary .toString() calls 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 * Move CSRF tokens into URLSearchParams constructor instead of using .append() 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 * Alphabetize URLSearchParams object properties for consistency 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kojiromike <1566303+kojiromike@users.noreply.github.com> Co-authored-by: Michael A. Smith Co-authored-by: Claude Opus 4.5 --- contrib/util/dupecheck/index.php | 13 ++- custom/download_qrda.php | 6 +- interface/billing/billing_report.php | 22 ++++- interface/billing/billing_tracker.php | 10 +- interface/billing/sl_eob_search.php | 15 ++- interface/billing/ub04_form.php | 10 +- interface/forms/CAMOS/new.php | 9 +- interface/forms/LBF/new.php | 69 ++++++++------ interface/forms/eye_mag/js/eye_base.php | 43 +++++---- interface/forms/eye_mag/view.php | 20 ++-- interface/forms/procedure_order/common.php | 36 +++++--- .../main/authorizations/authorizations.php | 7 +- .../main/dated_reminders/dated_reminders.php | 6 +- interface/main/display_documents.php | 6 +- interface/main/messages/messages.php | 8 +- .../public/assets/js/src/conference-room.js | 24 +++-- .../js/src/confirm-session-close-dialog.js | 7 +- .../assets/js/src/patient-conference-room.js | 8 +- .../public/assets/js/telehealth-calendar.js | 14 ++- .../public/js/application/sendTo.js | 91 +++++++++++++++---- interface/orders/orders_results.php | 6 +- interface/patient_file/encounter/forms.php | 16 ++-- interface/patient_file/history/encounters.php | 29 ++++-- .../patient_file/manage_dup_patients.php | 12 ++- .../patient_file/summary/demographics.php | 42 ++++++--- .../summary/demographics_full.php | 10 +- interface/practice/ins_search.php | 24 ++--- interface/reports/collections_report.php | 6 +- interface/reports/destroyed_drugs_report.php | 6 +- interface/reports/encounters_report.php | 6 +- interface/reports/front_receipts_report.php | 8 +- interface/reports/immunization_report.php | 7 +- interface/super/edit_layout.php | 29 ++++-- library/js/CustomTemplateApi.js | 7 +- library/js/ajax_functions_writer.js | 5 +- .../insurance/EditPolicyScreenController.js | 16 ++-- library/js/utility.js | 25 +++-- portal/add_edit_event_user.php | 15 ++- portal/index.php | 3 +- .../scripts/app/onsiteactivityviews.js | 20 +++- portal/patient/scripts/app/onsitedocuments.js | 75 +++++++-------- portal/portal_payment.php | 6 +- portal/sign/assets/signer_api.js | 5 +- templates/prescription/general_edit.html.twig | 6 +- 44 files changed, 547 insertions(+), 261 deletions(-) diff --git a/contrib/util/dupecheck/index.php b/contrib/util/dupecheck/index.php index 8cea33edd1d0..437559f08abf 100644 --- a/contrib/util/dupecheck/index.php +++ b/contrib/util/dupecheck/index.php @@ -273,12 +273,17 @@ public function __construct() // begin the merge of a block into a single record $(".onerow").on("click", function() { - var dupecount = $(this).attr("dupecount"); - var masterid = $(this).attr("oemrid"); - var newurl = "mergerecords.php?dupecount=" + encodeURIComponent(dupecount) + "&masterid=" + encodeURIComponent(masterid) + '&csrf_token_form=' + ; + const dupecount = $(this).attr("dupecount"); + const masterid = $(this).attr("oemrid"); + const params = new URLSearchParams({ + csrf_token_form: , + dupecount: dupecount, + masterid: masterid + }); $("[dupecount="+dupecount+"]").each(function (i) { - if (this.id != masterid) { newurl += "&otherid[]=" + encodeURIComponent(this.id); } + if (this.id != masterid) { params.append("otherid[]", this.id); } }); + const newurl = "mergerecords.php?" + params; // open a new window and show the merge results moreinfoWin = window.open(newurl, "mergewin"); }); diff --git a/custom/download_qrda.php b/custom/download_qrda.php index f92449e04c7e..16582cdfbb4b 100644 --- a/custom/download_qrda.php +++ b/custom/download_qrda.php @@ -105,7 +105,11 @@ function(data){ if ( zipFileArray.length ) { var zipFiles = zipFileArray.join(","); //console.log(zipFiles); - window.location = 'ajax_download.php?fileName=' + encodeURIComponent(zipFiles) + '&csrf_token_form=' + ; + const params = new URLSearchParams({ + csrf_token_form: , + fileName: zipFiles + }); + window.location = 'ajax_download.php?' + params; zipFileArray.length = 0; } if ( failureMessage ) { diff --git a/interface/billing/billing_report.php b/interface/billing/billing_report.php index b2efa9b33faf..a02bfeab50fe 100644 --- a/interface/billing/billing_report.php +++ b/interface/billing/billing_report.php @@ -371,15 +371,25 @@ function set_button_states() { function toEncounter(newpid, enc) { top.restoreSession(); - top.RTop.location = "/interface/patient_file/summary/demographics.php?set_pid=" + encodeURIComponent(newpid) + "&set_encounterid=" + encodeURIComponent(enc); + const params = new URLSearchParams({ + set_encounterid: enc, + set_pid: newpid + }); + top.RTop.location = "/interface/patient_file/summary/demographics.php?" + params; } function popMBO(pid, enc, mboid) { if (!window.focus) return true; if (!ProcessBeforeSubmitting()) return false; top.restoreSession(); - let qstring = "&pid=" + encodeURIComponent(pid) + "&enc=" + encodeURIComponent(enc) + "&id=" + encodeURIComponent(mboid); - let href = "/interface/patient_file/encounter/view_form.php?formname=misc_billing_options&isBilling=1" + qstring; + const params = new URLSearchParams({ + enc: enc, + formname: 'misc_billing_options', + id: mboid, + isBilling: '1', + pid: pid + }); + const href = "/interface/patient_file/encounter/view_form.php?" + params; dlgopen(href, 'mbopop', 'modal-lg', 750, false, '', { sizeHeight: 'full' // override min height auto size. }); @@ -390,7 +400,11 @@ function popUB04(pid, enc) { if (!window.focus) return true; if (!ProcessBeforeSubmitting()) return false; top.restoreSession(); - let href = "/interface/billing/ub04_form.php?pid=" + encodeURIComponent(pid) + "&enc=" + encodeURIComponent(enc); + const params = new URLSearchParams({ + enc: enc, + pid: pid + }); + const href = "/interface/billing/ub04_form.php?" + params; dlgopen(href, 'ub04pop', 1175, 750, false, '', { sizeHeight: 'full' // override min height auto size. }); diff --git a/interface/billing/billing_tracker.php b/interface/billing/billing_tracker.php index ef6c480d1496..07da6e8107f4 100644 --- a/interface/billing/billing_tracker.php +++ b/interface/billing/billing_tracker.php @@ -94,10 +94,12 @@ "render": function(data, type, row, meta) { // Build the URL so the user can download the claim batch file if (type === 'display') { - const url = '/interface/billing/get_claim_file.php?' + - 'key=' + encodeURIComponent(data) + - '&csrf_token_form=' + + - '&partner=' + encodeURIComponent(row.x12_partner_id); + const params = new URLSearchParams({ + csrf_token_form: , + key: data, + partner: row.x12_partner_id + }); + const url = '/interface/billing/get_claim_file.php?' + params; data = '
' + jsText(data) + ''; } diff --git a/interface/billing/sl_eob_search.php b/interface/billing/sl_eob_search.php index 702f598ec56c..c9fc7358759d 100644 --- a/interface/billing/sl_eob_search.php +++ b/interface/billing/sl_eob_search.php @@ -667,7 +667,11 @@ function reSubmit() { } function editInvoice(e, id) { e.preventDefault(); - let url = './sl_eob_invoice.php?isPosting=1&id=' + encodeURIComponent(id); + const params = new URLSearchParams({ + id: id, + isPosting: '1' + }); + const url = './sl_eob_invoice.php?' + params; dlgopen(url,'editInvoiceDlg','modal-full', false, false, '', { sizeHeight: 'full', @@ -1258,7 +1262,14 @@ function processERA() { var f = document.forms[0]; var debug = f.form_without.checked ? '1' : '0'; var paydate = f.form_paydate.value; - window.open('sl_eob_process.php?eraname=' + + '&debug=' + encodeURIComponent(debug) + '&paydate=' + encodeURIComponent(paydate) + '&original=original' + '&csrf_token_form=' + , '_blank'); + const params = new URLSearchParams({ + csrf_token_form: , + debug: debug, + eraname: , + original: 'original', + paydate: paydate + }); + window.open('sl_eob_process.php?' + params, '_blank'); return false; } diff --git a/interface/billing/ub04_form.php b/interface/billing/ub04_form.php index 45779f2e5050..7fe1ac273018 100644 --- a/interface/billing/ub04_form.php +++ b/interface/billing/ub04_form.php @@ -273,15 +273,19 @@ function cleanUp() } function selectUser(formid,event) { - var title = 'Providers'; - var params = { + const title = 'Providers'; + const urlParams = new URLSearchParams({ + action: 'user_select', + formid: formid + }); + const params = { buttons: [ {text: 'Cancel', close: true, style: 'secondary btn-sm'} ], type: 'GET', title: title, size: 'modal-mlg', - url: './ub04_helpers.php?action=user_select&formid=' + encodeURIComponent(formid) + url: './ub04_helpers.php?' + urlParams }; return dialog.ajax(params).then(function () { }); diff --git a/interface/forms/CAMOS/new.php b/interface/forms/CAMOS/new.php index 164b98ca6dcd..c46f8cfb01c6 100755 --- a/interface/forms/CAMOS/new.php +++ b/interface/forms/CAMOS/new.php @@ -903,13 +903,10 @@ function processajax (serverPage, obj, getOrPost, str){ function setformvalues(form_array){ - //Run through a list of all objects - var str = ''; - for(key in form_array) { - str += key + "=" + encodeURIComponent(form_array[key]) + "&"; - } + //Run through a list of all objects and build query string + const params = new URLSearchParams(form_array); //Then return the string values. - return str; + return params.toString(); } //END OF AJAX RELATED FUNCTIONS diff --git a/interface/forms/LBF/new.php b/interface/forms/LBF/new.php index 2093cf039b34..2aee1afab89d 100644 --- a/interface/forms/LBF/new.php +++ b/interface/forms/LBF/new.php @@ -580,12 +580,14 @@ function set_related(codetype, code, selector, codedesc) { // This is the case of selecting a code for the Fee Sheet: if (!current_sel_name) { if (code) { - $.getScript('/library/ajax/code_attributes_ajax.php' + - '?codetype=' + encodeURIComponent(codetype) + - '&code=' + encodeURIComponent(code) + - '&selector=' + encodeURIComponent(selector) + - '&pricelevel=' + encodeURIComponent(f.form_fs_pricelevel ? f.form_fs_pricelevel.value : "") + - '&csrf_token_form=' + ); + const params = new URLSearchParams({ + code: code, + codetype: codetype, + csrf_token_form: , + pricelevel: f.form_fs_pricelevel ? f.form_fs_pricelevel.value : "", + selector: selector + }); + $.getScript('/library/ajax/code_attributes_ajax.php?' + params); } return ''; } @@ -693,8 +695,11 @@ function validate(f, restore = true) { // TBD: Move this to TabsWrapper.class.php. function openLBFEncounterForm(formdir, formname, formid) { top.restoreSession(); - var url = '' + - encodeURIComponent(formdir) + '&id=' + encodeURIComponent(formid); + const params = new URLSearchParams({ + formname: formdir, + id: formid + }); + const url = '' + params; parent.twAddFrameTab('enctabs', formname, url); return false; } @@ -796,11 +801,13 @@ function fs_service_clicked(cb) { } return; } - $.getScript('/library/ajax/code_attributes_ajax.php' + - '?codetype=' + encodeURIComponent(a[0]) + - '&code=' + encodeURIComponent(a[1]) + - '&pricelevel=' + encodeURIComponent(f.form_fs_pricelevel.value) + - '&csrf_token_form=' + ); + const params = new URLSearchParams({ + code: a[1], + codetype: a[0], + csrf_token_form: , + pricelevel: f.form_fs_pricelevel.value + }); + $.getScript('/library/ajax/code_attributes_ajax.php?' + params); } // Respond to clicking a checkbox for adding (or removing) a specific product. @@ -822,12 +829,14 @@ function fs_product_clicked(cb) { } return; } - $.getScript('/library/ajax/code_attributes_ajax.php' + - '?codetype=' + encodeURIComponent(a[0]) + - '&code=' + encodeURIComponent(a[1]) + - '&selector=' + encodeURIComponent(a[2]) + - '&pricelevel=' + encodeURIComponent(f.form_fs_pricelevel.value) + - '&csrf_token_form=' + ); + const params = new URLSearchParams({ + code: a[1], + codetype: a[0], + csrf_token_form: , + pricelevel: f.form_fs_pricelevel.value, + selector: a[2] + }); + $.getScript('/library/ajax/code_attributes_ajax.php?' + params); } // Respond to clicking a checkbox for adding (or removing) a specific diagnosis. @@ -849,11 +858,13 @@ function fs_diag_clicked(cb) { } return; } - $.getScript('/library/ajax/code_attributes_ajax.php' + - '?codetype=' + encodeURIComponent(a[0]) + - '&code=' + encodeURIComponent(a[1]) + - '&pricelevel=' + encodeURIComponent(f.form_fs_pricelevel ? f.form_fs_pricelevel.value : "") + - '&csrf_token_form=' + ); + const params = new URLSearchParams({ + code: a[1], + codetype: a[0], + csrf_token_form: , + pricelevel: f.form_fs_pricelevel ? f.form_fs_pricelevel.value : "" + }); + $.getScript('/library/ajax/code_attributes_ajax.php?' + params); } // Respond to selecting a package of codes. @@ -861,10 +872,12 @@ function fs_package_selected(sel) { var f = sel.form; // The option value is an encoded string of code types and codes. if (sel.value) { - $.getScript('/library/ajax/code_attributes_ajax.php' + - '?list=' + encodeURIComponent(sel.value) + - '&pricelevel=' + encodeURIComponent(f.form_fs_pricelevel ? f.form_fs_pricelevel.value : "") + - '&csrf_token_form=' + ); + const params = new URLSearchParams({ + csrf_token_form: , + list: sel.value, + pricelevel: f.form_fs_pricelevel ? f.form_fs_pricelevel.value : "" + }); + $.getScript('/library/ajax/code_attributes_ajax.php?' + params); } sel.selectedIndex = 0; } diff --git a/interface/forms/eye_mag/js/eye_base.php b/interface/forms/eye_mag/js/eye_base.php index a81e7dd14573..94dce3d6ae4b 100644 --- a/interface/forms/eye_mag/js/eye_base.php +++ b/interface/forms/eye_mag/js/eye_base.php @@ -264,13 +264,12 @@ function check_lock(modify) { /* * Function to save a canvas by zone */ -// AI-generated code start (GitHub Copilot) - Refactored to use URLSearchParams function submit_canvas(zone) { var id_here = document.getElementById('myCanvas_'+zone); var dataURL = id_here.toDataURL('image/jpeg','1'); const params = new URLSearchParams({ - canvas: zone, - id: $("#form_id").val() + id: $("#form_id").val(), + canvas: zone }); top.restoreSession(); $.ajax({ @@ -287,7 +286,6 @@ function submit_canvas(zone) { }).done(function(o) { }); } -// AI-generated code end /* * Function to update the user's preferences */ @@ -930,16 +928,15 @@ function show_PRIORS_section(section,newValue) { /** * Function to display a canvas/drawing from a prior visit. */ -// AI-generated code start (GitHub Copilot) - Refactored to use URLSearchParams function show_PRIOR_CANVAS_section(section, newValue) { var pid = $('#pid').val(); var zone = section; const params = new URLSearchParams({ + as_file: 'false', document: '', - retrieve: '', - patient_id: pid, document_id: newValue, - as_file: 'false' + patient_id: pid, + retrieve: '' }); const result = base + '/controller.php?' + params.toString(); const cp_forward = ''; @@ -949,7 +946,6 @@ function show_PRIOR_CANVAS_section(section, newValue) { $("#"+zone+"_olddrawing").html(filler); $("#"+zone+"_olddrawing").removeClass('nodisplay'); } -// AI-generated code end function replace_CANVAS(zone, url) { $("#url_"+zone).val(url); @@ -1047,11 +1043,22 @@ function editScripts(url) { var pid = $('#pid').val(); var AddScript = function () { var iam = top.frames.editScripts; - iam.location.href = base + "/controller.php?prescription&edit&id=&pid="+encodeURIComponent(pid) + const params = new URLSearchParams({ + edit: '', + id: '', + pid: pid, + prescription: '' + }); + iam.location.href = base + "/controller.php?" + params; }; var ListScripts = function () { var iam = top.frames.editScripts; - iam.location.href = base + "/controller.php?prescription&list&id="+encodeURIComponent(pid) + const params = new URLSearchParams({ + id: pid, + list: '', + prescription: '' + }); + iam.location.href = base + "/controller.php?" + params; }; let title = 'Prescriptions'; @@ -1888,25 +1895,22 @@ function goto_url(url) { location.href = R; } //is this used anywhere? Looks like it should be deleted... -// AI-generated code start (GitHub Copilot) - Refactored to use URLSearchParams function openImage() { const params = new URLSearchParams({ + as_file: 'false', document: '', - retrieve: '', - patient_id: '3', document_id: '10', - as_file: 'false' + patient_id: '3', + retrieve: '' }); dlgopen(base + '/controller.php?' + params.toString(), '_blank', 600, 475); } -// AI-generated code end // Called to open a document in another tab for this encounter. -// AI-generated code start (GitHub Copilot) - Refactored to use URLSearchParams function openDocumentNewTab(doc_id) { const params = new URLSearchParams({ - formname: formdir, - id: formid + id: formid, + formname: formdir }); const url = '../../interface/patient_file/encounter/view_form.php?' + params.toString(); if (formdir == 'newpatient' || !parent.twAddFrameTab) { @@ -1917,7 +1921,6 @@ function openDocumentNewTab(doc_id) { } return false; } -// AI-generated code end function HPI_sync_heights() { if ( ($('#PMSFH_block_1').height() > $('#PMH_left').height() ) || diff --git a/interface/forms/eye_mag/view.php b/interface/forms/eye_mag/view.php index 707f8be62d10..82a24c9af725 100644 --- a/interface/forms/eye_mag/view.php +++ b/interface/forms/eye_mag/view.php @@ -4367,8 +4367,8 @@ function set_related(codetype, code, selector, codedesc) { function dopclick(id) { const params = new URLSearchParams({ - issue: '0', - thistype: id + thistype: id, + issue: '0' }); dlgopen('../../patient_file/summary/a_issue.php?' + params.toString(), '_blank', 550, 400, '', ); @@ -4377,10 +4377,10 @@ function dopclick(id) { } function doscript(type,id,encounter,rx_number) { const params = new URLSearchParams({ - REFTYPE: type, - id: id, encounter: encounter, form_id: , + id: id, + REFTYPE: type, rx_number: rx_number }); dlgopen('../../forms/eye_mag/SpectacleRx.php?' + params.toString(), '_blank', 660, 700,'', ); @@ -4388,8 +4388,8 @@ function doscript(type,id,encounter,rx_number) { function dispensed(pid) { const params = new URLSearchParams({ - dispensed: '1', - pid: pid + pid: pid, + dispensed: '1' }); dlgopen('../../forms/eye_mag/SpectacleRx.php?' + params.toString(), '_blank', 560, 590, '', ); } @@ -4405,8 +4405,8 @@ function sel_diagnosis(target,term) { ?> // AI-generated code (GitHub Copilot) - Refactored to use URLSearchParams const searchParams = new URLSearchParams({ - codetype: , - search_term: term + search_term: term, + codetype: }); dlgopen('/patient_file/encounter/find_code_popup.php?' + searchParams.toString(), '_blank', 600, 400,'', ); // AI-generated code (GitHub Copilot) - Refactored to use URLSearchParams const searchParams = new URLSearchParams({ - codetype: , - search_term: term + search_term: term, + codetype: }); dlgopen('/patient_file/encounter/find_code_popup.php?' + searchParams.toString(), '_blank', 600, 400, '', ); ; // This replaces the previous search for an easier/faster order picker tool. - dlgopen('../../orders/find_order_popup.php' + - '?labid=' + encodeURIComponent(f.form_lab_id.value) + - '&order=' + encodeURIComponent(f[ptvarname].value) + - '&formid=' + + - '&formseq=' + encodeURIComponent(formseq), + const params = new URLSearchParams({ + formid: , + formseq: formseq, + labid: f.form_lab_id.value, + order: f[ptvarname].value + }); + dlgopen('../../orders/find_order_popup.php?' + params, '_blank', 850, 500, '', title); } @@ -1124,8 +1126,12 @@ function getDetails(e, id) { let codetitle = 'form_proc_type_desc[' + id + ']'; let code = f[codeattr].value; let url = top.webroot_url + "/interface/procedure_tools/libs/labs_ajax.php"; - url += "?action=code_detail)&code=" + encodeURIComponent(code) + - "&csrf_token_form=" + ; + const params = new URLSearchParams({ + action: 'code_detail)', + code: code, + csrf_token_form: + }); + url += "?" + params; let title = +": " + code + " " + f[codetitle].value; dlgopen(url, 'details', 'modal-md', 200, '', title, { buttons: [ @@ -1183,10 +1189,18 @@ function createLabels(e) { let pid = ; let url = top.webroot_url + "/interface/procedure_tools/libs/labs_ajax.php"; // this escapes above - let uri = "?action=print_labels&count=" + encodeURIComponent(count) + "&order=" + encodeURIComponent(order) + "&pid=" + encodeURIComponent(pid) + - "&acctid=" + encodeURIComponent(acctid) + "&patient=" + encodeURIComponent(patient) + "&specimen=" + encodeURIComponent(tarray) + - "&dob=" + encodeURIComponent(dob) + - "&csrf_token_form=" + ; + const params = new URLSearchParams({ + acctid: acctid, + action: 'print_labels', + count: count, + csrf_token_form: , + dob: dob, + order: order, + patient: patient, + pid: pid, + specimen: tarray + }); + const uri = "?" + params; // retrieve the labels dlgopen(url + uri, 'pdf', 'modal-md', 750, ''); diff --git a/interface/main/authorizations/authorizations.php b/interface/main/authorizations/authorizations.php index a070dc32df69..afd0469d4fcd 100644 --- a/interface/main/authorizations/authorizations.php +++ b/interface/main/authorizations/authorizations.php @@ -262,7 +262,12 @@ var parts = note.id.split("~"); top.restoreSession(); - location.href = "/interface/patient_file/summary/pnotes_full.php?noteid=" + encodeURIComponent(parts[1]) + "&set_pid=" + encodeURIComponent(parts[0]) + "&active=1"; + const params = new URLSearchParams({ + active: '1', + noteid: parts[1], + set_pid: parts[0] + }); + location.href = "/interface/patient_file/summary/pnotes_full.php?" + params; // no-op alert(); diff --git a/interface/main/dated_reminders/dated_reminders.php b/interface/main/dated_reminders/dated_reminders.php index 247e1de8c38c..7ec511094945 100644 --- a/interface/main/dated_reminders/dated_reminders.php +++ b/interface/main/dated_reminders/dated_reminders.php @@ -108,7 +108,11 @@ function openAddScreen(id){ dlgopen('/interface/main/dated_reminders/dated_reminders_add.php', '_drAdd', 700, 500); } else { top.restoreSession(); - dlgopen('/interface/main/dated_reminders/dated_reminders_add.php?mID='+encodeURIComponent(id)+'&csrf_token_form=', '_drAdd', 700, 500); + const params = new URLSearchParams({ + csrf_token_form: '', + mID: id + }); + dlgopen('/interface/main/dated_reminders/dated_reminders_add.php?' + params, '_drAdd', 700, 500); } } diff --git a/interface/main/display_documents.php b/interface/main/display_documents.php index 83ffb85e5411..00cda4e577e5 100644 --- a/interface/main/display_documents.php +++ b/interface/main/display_documents.php @@ -110,7 +110,11 @@ function validateDate(fromDate,toDate){ return false; } } - document.location='/interface/main/display_documents.php?form_from_doc_date=' + encodeURIComponent(frmdate) + '&form_to_doc_date=' + encodeURIComponent(todate); + const params = new URLSearchParams({ + form_from_doc_date: frmdate, + form_to_doc_date: todate + }); + document.location='/interface/main/display_documents.php?' + params; } diff --git a/interface/main/messages/messages.php b/interface/main/messages/messages.php index 4484e2f50d4f..0db6032e6a70 100644 --- a/interface/main/messages/messages.php +++ b/interface/main/messages/messages.php @@ -1062,7 +1062,13 @@ function SMS_direct() { alert(); } else { top.restoreSession(); - window.open('messages.php?nomenu=1&go=SMS_bot&pid=' + encodeURIComponent(pid) + '&m=' + encodeURIComponent(m), 'SMS_bot', 'width=370,height=600,resizable=0'); + const params = new URLSearchParams({ + go: 'SMS_bot', + m: m, + nomenu: '1', + pid: pid + }); + window.open('messages.php?' + params, 'SMS_bot', 'width=370,height=600,resizable=0'); } } diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/conference-room.js b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/conference-room.js index 125ec5bcaebe..7550ae4d6c78 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/conference-room.js +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/conference-room.js @@ -559,7 +559,11 @@ export function ConferenceRoom(apiCSRFToken, enabledFeatures, translations, scri this.getTelehealthLaunchData = function(data) { - var scriptLocation = this.getRemoteScriptLocation() + '?action=get_telehealth_launch_data&eid=' + encodeURIComponent(data.pc_eid); + const params = new URLSearchParams({ + action: 'get_telehealth_launch_data', + eid: data.pc_eid + }); + const scriptLocation = this.getRemoteScriptLocation() + '?' + params; window.top.restoreSession(); return window.fetch(scriptLocation, {redirect: "manual"}); }; @@ -1026,9 +1030,13 @@ export function ConferenceRoom(apiCSRFToken, enabledFeatures, translations, scri }; this.updateLocalParticipantList = function() { - let eid = conf.telehealthSessionData.pc_eid; + const eid = conf.telehealthSessionData.pc_eid; + const params = new URLSearchParams({ + action: 'get_participant_list', + pc_eid: eid + }); window.top.restoreSession(); - window.fetch(conf.getRemoteScriptLocation() + '?action=get_participant_list&pc_eid=' + encodeURIComponent(eid), {redirect: "manual"}) + window.fetch(conf.getRemoteScriptLocation() + '?' + params, {redirect: "manual"}) .then((request) => { if (request.ok) { return request.json(); @@ -1043,10 +1051,14 @@ export function ConferenceRoom(apiCSRFToken, enabledFeatures, translations, scri }; this.updateConferenceRoomSession = function() { - let appt = conf.callerSettings.appointment || {}; - let pc_eid = appt.eid || {}; + const appt = conf.callerSettings.appointment || {}; + const pc_eid = appt.eid || {}; + const params = new URLSearchParams({ + action: 'conference_session_update', + pc_eid: pc_eid + }); window.top.restoreSession(); - window.fetch(conf.getRemoteScriptLocation() + '?action=conference_session_update&pc_eid=' + encodeURIComponent(pc_eid), {redirect: "manual"}) + window.fetch(conf.getRemoteScriptLocation() + '?' + params, {redirect: "manual"}) .then((request) => { if (request.ok) { return request.json(); diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/confirm-session-close-dialog.js b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/confirm-session-close-dialog.js index 2cf1b02cd6d8..646814689e71 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/confirm-session-close-dialog.js +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/confirm-session-close-dialog.js @@ -42,8 +42,11 @@ export function ConfirmSessionCloseDialog(translations, pc_eid, scriptLocation, this.sendAppointmentStatusUpdate = function(status) { console.log("Setting appointment to status ", status); - let postData = "action=set_appointment_status&pc_eid=" + encodeURIComponent(pc_eid) - + "&status=" + encodeURIComponent(status); + const postData = new URLSearchParams({ + action: 'set_appointment_status', + pc_eid: pc_eid, + status: status + }); window.top.restoreSession(); window.fetch(scriptLocation, { diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/patient-conference-room.js b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/patient-conference-room.js index bdda8abc154b..0aa7202ce2db 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/patient-conference-room.js +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/patient-conference-room.js @@ -20,9 +20,13 @@ export function PatientConferenceRoom(apiCSRFToken, enabledFeatures, translation function checkProviderReadyForPatient() { - let pc_eid = patientConferenceRoom.telehealthSessionData.pc_eid; + const pc_eid = patientConferenceRoom.telehealthSessionData.pc_eid; + const params = new URLSearchParams({ + action: 'patient_appointment_ready', + eid: pc_eid + }); window.top.restoreSession(); - window.fetch(scriptLocation + '?action=patient_appointment_ready&eid=' + encodeURIComponent(pc_eid), {redirect: "manual"}) + window.fetch(scriptLocation + '?' + params, {redirect: "manual"}) .then(result => { if (result.ok) { return result.json(); diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-calendar.js b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-calendar.js index 15879dbb1835..812cec43e612 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-calendar.js +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-calendar.js @@ -40,7 +40,11 @@ function setCurrentEncounterForAppointment(pid, appointmentId) { window.top.restoreSession(); - return window.fetch(moduleLocation + 'public/index.php?action=set_current_appt_encounter&pc_eid=' + encodeURIComponent(appointmentId), {redirect: "manual"}) + const params = new URLSearchParams({ + action: 'set_current_appt_encounter', + pc_eid: appointmentId + }); + return window.fetch(moduleLocation + 'public/index.php?' + params, {redirect: "manual"}) .then(response => { if (!response.ok) { @@ -159,8 +163,12 @@ */ window.top.window.parent.left_nav.setPatientEncounter(encounterData.encounterList.ids, encounterData.encounterList.dates, encounterData.encounterList.categories); window.top.left_nav.setEncounter(encounterData.selectedEncounter.dateStr, encounterData.selectedEncounter.id, ""); - window.top.RTop.location = '../../patient_file/encounter/encounter_top.php?set_pid=' + encodeURIComponent(pid) - + '&set_encounter=' + encodeURIComponent(encounterData.selectedEncounter.id) + '&launch_telehealth=1'; + const params = new URLSearchParams({ + launch_telehealth: 1, + set_encounter: encounterData.selectedEncounter.id, + set_pid: pid + }); + window.top.RTop.location = '../../patient_file/encounter/encounter_top.php?' + params; if (window.top.comlink && window.top.comlink.telehealth && window.top.comlink.telehealth.launchProviderVideoMessage) { window.top.comlink.telehealth.launchProviderVideoMessage({ pc_eid: pc_eid diff --git a/interface/modules/zend_modules/public/js/application/sendTo.js b/interface/modules/zend_modules/public/js/application/sendTo.js index a4fef154afb0..b4486cf31bda 100644 --- a/interface/modules/zend_modules/public/js/application/sendTo.js +++ b/interface/modules/zend_modules/public/js/application/sendTo.js @@ -297,10 +297,6 @@ function sendToEmrDirect() { var downloadformat_type = $('input[name="downloadformat_type"]:checked').val() || ""; var comp = getComponentsString(); - const ccdaGenerateBaseUrl = APP_URL + "/encounterccdadispatch/index?view=1&emr_transfer=1&recipient=emr_direct" - + "&downloadformat_type=" + downloadformat_type; - const emrDirectBaseUrl = APP_URL + "/encountermanager/transmitCCD?xml_type=" + format - + "&downloadformat_type=" + downloadformat_type; if ($("#ccda_pid").val()) { combination = $("#ccda_pid").val(); } else { @@ -329,17 +325,34 @@ function sendToEmrDirect() { var recipients = $(".emr_to_phimail").val(); var referral_reason = $("#referral_reason").val(); if (recipients != '') { - var ccdaUrl = ccdaGenerateBaseUrl + "&combination=" + combination + "§ions=" + components + "¶m=" + recipients - + "&referral_reason=" + referral_reason + "&components=" + comp + "&latest_ccda=" + latest_ccda; + const ccdaParams = new URLSearchParams({ + combination: combination, + components: comp, + downloadformat_type: downloadformat_type, + emr_transfer: 1, + latest_ccda: latest_ccda, + param: recipients, + recipient: 'emr_direct', + referral_reason: referral_reason, + sections: components, + view: 1 + }); + var ccdaUrl = APP_URL + "/encounterccdadispatch/index?" + ccdaParams; $.ajax({ type: "POST", url: ccdaUrl, dataType: "html", data: {}, }).done(function () { + const emrDirectParams = new URLSearchParams({ + combination: combination, + downloadformat_type: downloadformat_type, + recipients: recipients, + xml_type: format + }); $.ajax({ type: "POST", - url: emrDirectBaseUrl + "&combination=" + combination + "&recipients=" + recipients, + url: APP_URL + "/encountermanager/transmitCCD?" + emrDirectParams, dataType: "html", data: {}, success: function (thedata) { @@ -417,10 +430,17 @@ function sendToDownloadAll() { alert(resultTranslated.msg); return false; } else { - var download_format = $('input:radio[name="downloadformat"]:checked').val(); + const download_format = $('input:radio[name="downloadformat"]:checked').val(); + const baseUrl = WEB_ROOT + "/interface/modules/zend_modules/public/encountermanager/index?"; if (download_format == 'ccda') { if ($('#ccda_pid').val()) { - window.location.assign(WEB_ROOT + "/interface/modules/zend_modules/public/encountermanager/index?pid_ccda=" + pid + "&downloadccda=download_ccda&components=" + comp + "&latest_ccda=" + latest_ccda); + const params = new URLSearchParams({ + components: comp, + downloadccda: 'download_ccda', + latest_ccda: latest_ccda, + pid_ccda: pid + }); + window.location.assign(baseUrl + params); } else { $('#components').val(comp); $("#latestccda").val(latest_ccda); @@ -429,35 +449,55 @@ function sendToDownloadAll() { } } else if (download_format == 'qrda') { if ($('#ccda_pid').val()) { - window.location.assign(WEB_ROOT + "/interface/modules/zend_modules/public/encountermanager/index?pid_ccda=" + pid + "&downloadqrda=download_qrda"); + const params = new URLSearchParams({ + downloadqrda: 'download_qrda', + pid_ccda: pid + }); + window.location.assign(baseUrl + params); } else { $('#download_qrda').trigger("click"); $(".check_pid").prop("checked", false); } } else if (download_format == 'qrda3') { if ($('#ccda_pid').val()) { - window.location.assign(WEB_ROOT + "/interface/modules/zend_modules/public/encountermanager/index?pid_ccda=" + pid + "&downloadqrda=download_qrda3"); + const params = new URLSearchParams({ + downloadqrda: 'download_qrda3', + pid_ccda: pid + }); + window.location.assign(baseUrl + params); } else { $('#download_qrda3').trigger("click"); $(".check_pid").prop("checked", false); } } else if (download_format == 'qrda3_consolidated') { if ($('#ccda_pid').val()) { - window.location.assign(WEB_ROOT + "/interface/modules/zend_modules/public/encountermanager/index?pid_ccda=" + pid + "&downloadqrda3_consolidated=download_qrda3_consolidated"); + const params = new URLSearchParams({ + downloadqrda3_consolidated: 'download_qrda3_consolidated', + pid_ccda: pid + }); + window.location.assign(baseUrl + params); } else { $('#downloadqrda3_consolidated').trigger("click"); $(".check_pid").prop("checked", false); } } else if (download_format == 'ccr') { if ($('#ccda_pid').val()) { - window.location.assign(WEB_ROOT + "/interface/modules/zend_modules/public/encountermanager/index?pid_ccr=" + pid + "&downloadccr=download_ccr"); + const params = new URLSearchParams({ + downloadccr: 'download_ccr', + pid_ccr: pid + }); + window.location.assign(baseUrl + params); } else { $('#download_ccr').trigger("click"); $(".check_pid").prop("checked", false); } } else if (download_format == 'ccd') { if ($('#ccda_pid').val()) { - window.location.assign(WEB_ROOT + "/interface/modules/zend_modules/public/encountermanager/index?pid_ccd=" + pid + "&downloadccd=download_ccd"); + const params = new URLSearchParams({ + downloadccd: 'download_ccd', + pid_ccd: pid + }); + window.location.assign(baseUrl + params); } else { $('#download_ccd').trigger("click"); $(".check_pid").prop("checked", false); @@ -505,10 +545,13 @@ function send() { } }); if (send_to == "printer") { - url = ""; - url += "covering_letter=" + cover_letter + "&selected_cform=" + $("#selected_cform").val(); - url += "&formnames=" + formnames + "&formnames_title=" + formnames_title; - window.open(WEB_ROOT + "/interface/patient_file/encounter/print_report.php?" + url, "Print", 'width=1000,height=800,resizable=yes,scrollbars=yes'); + const params = new URLSearchParams({ + covering_letter: cover_letter, + formnames: formnames, + formnames_title: formnames_title, + selected_cform: $("#selected_cform").val() + }); + window.open(WEB_ROOT + "/interface/patient_file/encounter/print_report.php?" + params, "Print", 'width=1000,height=800,resizable=yes,scrollbars=yes'); $('.ap-st-st-12').fadeToggle(); $('.activity_indicator').css({"display": "none"}); } @@ -564,14 +607,22 @@ function send() { if (combination == '') { $('.ap-st-st-12').fadeToggle(); $('.activity_indicator').css({"display": "none"}); - var resultTranslated = js_xl("Please select at least one patient."); + const resultTranslated = js_xl("Please select at least one patient."); alert(resultTranslated.msg); return false; } + const hieParams = new URLSearchParams({ + combination: combination, + components: comp, + latest_ccda: latest_ccda, + recipient: 'hie', + sections: str, + send: 1 + }); $.ajax({ type: "POST", - url: APP_URL + "/encounterccdadispatch/index?combination=" + combination + "§ions=" + str + "&send=1&recipient=hie&components=" + comp + "&latest_ccda=" + latest_ccda, + url: APP_URL + "/encounterccdadispatch/index?" + hieParams, dataType: "html", data: {}, success: function (thedata) { diff --git a/interface/orders/orders_results.php b/interface/orders/orders_results.php index 597fa5e2c9a4..6373582e593e 100644 --- a/interface/orders/orders_results.php +++ b/interface/orders/orders_results.php @@ -190,7 +190,11 @@ function sel_proc_type(varname) { varname = 'form_proc_type'; } ptvarname = varname; - dlgopen('types.php?popup=1&order=' + encodeURIComponent(f[ptvarname].value), '_blank', 800, 500); + const params = new URLSearchParams({ + order: f[ptvarname].value, + popup: '1' + }); + dlgopen('types.php?' + params, '_blank', 800, 500); } // This is for callback by the find-procedure-type popup. diff --git a/interface/patient_file/encounter/forms.php b/interface/patient_file/encounter/forms.php index 0405243d16c8..db0be2959018 100644 --- a/interface/patient_file/encounter/forms.php +++ b/interface/patient_file/encounter/forms.php @@ -308,12 +308,11 @@ }); - // AI-generated code start (GitHub Copilot) - Refactored to use URLSearchParams // Process click on Delete link. function deleteme() { const params = new URLSearchParams({ - encounterid: , - csrf_token_form: + csrf_token_form: , + encounterid: }); dlgopen('../deleter.php?' + params.toString(), '_blank', 500, 200, '', '', { allowResize: false, @@ -321,7 +320,6 @@ function deleteme() { }); return false; } - // AI-generated code end // create new follow-up Encounter. function createFollowUpEncounter() { @@ -347,8 +345,11 @@ function imdeleted(EncounterId) { // Called to open the data entry form a specified encounter form instance. function openEncounterForm(formdir, formname, formid) { - var url = +'/patient_file/encounter/view_form.php?formname=' + - encodeURIComponent(formdir) + '&id=' + encodeURIComponent(formid); + const params = new URLSearchParams({ + id: formid, + formname: formdir + }); + const url = +'/patient_file/encounter/view_form.php?' + params; if (formdir == 'newpatient' || !parent.twAddFrameTab) { top.restoreSession(); location.href = url; @@ -417,7 +418,8 @@ function openNewForm(sel, label) { parent.frames[0].location.href = sel; } else { if (FormNameValueArray[1] == 'questionnaire_assessments') { - sel += "&questionnaire_form=" + encodeURIComponent(label); + const params = new URLSearchParams({ questionnaire_form: label }); + sel += "&" + params; } parent.twAddFrameTab('enctabs', label, sel); } diff --git a/interface/patient_file/history/encounters.php b/interface/patient_file/history/encounters.php index 898d3e657932..65a8e030ff2a 100644 --- a/interface/patient_file/history/encounters.php +++ b/interface/patient_file/history/encounters.php @@ -222,7 +222,13 @@ function toencounter(rawdata) { } function todocument(docid) { - h = '/controller.php?document&view&patient_id=&doc_id=' + encodeURIComponent(docid); + const params = new URLSearchParams({ + doc_id: docid, + document: '', + patient_id: '', + view: '' + }); + h = '/controller.php?' + params; top.restoreSession(); location.href = h; } @@ -238,7 +244,13 @@ function changePageSize() { issue = $(this).attr("issue"); pagesize = $(this).val(); top.restoreSession(); - window.location.href = "encounters.php?billing=" + encodeURIComponent(billing) + "&issue=" + encodeURIComponent(issue) + "&pagestart=" + encodeURIComponent(pagestart) + "&pagesize=" + encodeURIComponent(pagesize); + const params = new URLSearchParams({ + billing: billing, + issue: issue, + pagesize: pagesize, + pagestart: pagestart + }); + window.location.href = "encounters.php?" + params; } window.onload = function() { @@ -895,11 +907,14 @@ function createFollowUpEncounter(event, encId){ if (typeof el.dataset == 'undefined') { return xl("Report Unavailable"); } - let url = "encounters_ajax.php?ptid=" + encodeURIComponent(el.dataset.formpid) + - "&encid=" + encodeURIComponent(el.dataset.formenc) + - "&formname=" + encodeURIComponent(el.dataset.formdir) + - "&formid=" + encodeURIComponent(el.dataset.formid) + - "&csrf_token_form=" + ; + const params = new URLSearchParams({ + csrf_token_form: , + encid: el.dataset.formenc, + formid: el.dataset.formid, + formname: el.dataset.formdir, + ptid: el.dataset.formpid + }); + let url = "encounters_ajax.php?" + params; let fetchedReport; $.ajax({ url: url, diff --git a/interface/patient_file/manage_dup_patients.php b/interface/patient_file/manage_dup_patients.php index e11e74af5ae1..33a55f31e968 100644 --- a/interface/patient_file/manage_dup_patients.php +++ b/interface/patient_file/manage_dup_patients.php @@ -218,9 +218,17 @@ function selectChange(select, toppid, rowpid) { } top.restoreSession(); if (select.value == 'MK') { - window.location = 'merge_patients.php?pid1=' + encodeURIComponent(rowpid) + '&pid2=' + encodeURIComponent(toppid); + const params = new URLSearchParams({ + pid1: rowpid, + pid2: toppid + }); + window.location = 'merge_patients.php?' + params; } else if (select.value == 'MD') { - window.location = 'merge_patients.php?pid1=' + encodeURIComponent(toppid) + '&pid2=' + encodeURIComponent(rowpid); + const params = new URLSearchParams({ + pid1: toppid, + pid2: rowpid + }); + window.location = 'merge_patients.php?' + params; } else { // Currently 'U' and 'R' actions are supported and rowpid is meaningless. form.form_action.value = select.value; diff --git a/interface/patient_file/summary/demographics.php b/interface/patient_file/summary/demographics.php index 32b3bb415d47..8bb66b227528 100644 --- a/interface/patient_file/summary/demographics.php +++ b/interface/patient_file/summary/demographics.php @@ -386,12 +386,20 @@ function image_widget($doc_id, $doc_catg): void function referentialCdsClick(codetype, codevalue) { top.restoreSession(); // Force a new window instead of iframe to address cross site scripting potential - dlgopen('../education.php?type=' + encodeURIComponent(codetype) + '&code=' + encodeURIComponent(codevalue), '_blank', 1024, 750, true); + const params = new URLSearchParams({ + code: codevalue, + type: codetype + }); + dlgopen('../education.php?' + params, '_blank', 1024, 750, true); } function oldEvt(apptdate, eventid) { let title = ; - dlgopen('../../main/calendar/add_edit_event.php?date=' + encodeURIComponent(apptdate) + '&eid=' + encodeURIComponent(eventid), '_blank', 800, 500, '', title); + const params = new URLSearchParams({ + eid: eventid, + date: apptdate + }); + dlgopen('../../main/calendar/add_edit_event.php?' + params, '_blank', 800, 500, '', title); } function advdirconfigure() { @@ -403,12 +411,11 @@ function refreshme() { location.reload(); } - // AI-generated code start (GitHub Copilot) - Refactored to use URLSearchParams // Process click on Delete link. function deleteme() { // @todo don't think this is used any longer!! const params = new URLSearchParams({ - patient: , - csrf_token_form: + csrf_token_form: , + patient: }); dlgopen('../deleter.php?' + params.toString(), '_blank', 500, 450, '', '', { allowResize: false, @@ -418,14 +425,12 @@ function deleteme() { // @todo don't think this is used any longer!! }); return false; } - // AI-generated code end // Called by the deleteme.php window on a successful delete. function imdeleted() { top.clearPatient(); } - // AI-generated code start (GitHub Copilot) - Refactored to use URLSearchParams function newEvt() { let title = ; const params = new URLSearchParams({ @@ -435,7 +440,6 @@ function newEvt() { dlgopen(url, '_blank', 800, 500, '', title); return false; } - // AI-generated code end function toggleIndicator(target, div) { // @@ -648,8 +652,13 @@ function load_location(location) { let pid = ; let csrfToken = ; let ruleId = $(this).data("ruleId"); - let launchUrl = "/interface/super/rules/index.php?action=review!view&pid=" - + encodeURIComponent(pid) + "&rule_id=" + encodeURIComponent(ruleId) + "&csrf_token_form=" + encodeURIComponent(csrfToken); + const params = new URLSearchParams({ + action: 'review!view', + csrf_token_form: csrfToken, + pid: pid, + rule_id: ruleId + }); + let launchUrl = "/interface/super/rules/index.php?" + params; e.preventDefault(); e.stopPropagation(); // as we're loading another iframe, make sure to sync session @@ -666,8 +675,12 @@ function load_location(location) { dlgclose(); window.top.removeEventListener('message', windowMessageHandler); // loadFrame already handles webroot and /interface/ prefix. - let editUrl = '/super/rules/index.php?action=edit!summary&id=' + encodeURIComponent(data.ruleId) - + "&csrf_token=" + encodeURIComponent(csrfToken); + const editParams = new URLSearchParams({ + action: 'edit!summary', + csrf_token: csrfToken, + id: data.ruleId + }); + let editUrl = '/super/rules/index.php?' + editParams; window.parent.left_nav.loadFrame('adm', 'adm0', editUrl); } }; @@ -937,10 +950,9 @@ function setMyPatient() { parent.left_nav.syncRadios(); 0)) { $query_result = sqlQuery("SELECT `date` FROM `form_encounter` WHERE `encounter` = ?", [$encounter]); ?> - // AI-generated code (GitHub Copilot) - Refactored to use URLSearchParams const encParams = new URLSearchParams({ - set_encounter: , - pid: + pid: , + set_encounter: }); encurl = 'encounter/encounter_top.php?' + encParams.toString(); parent.left_nav.setEncounter(, , 'enc'); diff --git a/interface/patient_file/summary/demographics_full.php b/interface/patient_file/summary/demographics_full.php index c67125240f60..db862000ae3f 100644 --- a/interface/patient_file/summary/demographics_full.php +++ b/interface/patient_file/summary/demographics_full.php @@ -259,18 +259,18 @@ function checkNum() { function address_verify() { top.restoreSession(); - var f = document.demographics_form; + const f = document.demographics_form; - var params = new URLSearchParams({ + const params = new URLSearchParams({ address1: f.form_street.value, address2: f.form_street_line_2.value, city: f.form_city.value, state: f.form_state.value, - zip5: f.form_postal_code.value.substring(0, 5), - zip4: f.form_postal_code.value.substring(5, 9) + zip4: f.form_postal_code.value.substring(5, 9), + zip5: f.form_postal_code.value.substring(0, 5) }); - dlgopen('../../practice/address_verify.php?' + params.toString(), + dlgopen('../../practice/address_verify.php?' + params, '_blank', 400, 150, '', xl('Address Verify')); return false; } diff --git a/interface/practice/ins_search.php b/interface/practice/ins_search.php index 662883691ecb..b1bec8640888 100644 --- a/interface/practice/ins_search.php +++ b/interface/practice/ins_search.php @@ -74,17 +74,19 @@ function dosearch() { $("#form_entry").hide(); var f = document.forms[0]; - var search_list = 'ins_list.php' + - '?form_name=' + encodeURIComponent(f.form_name.value ) + - '&form_attn=' + encodeURIComponent(f.form_attn.value ) + - '&form_addr1=' + encodeURIComponent(f.form_addr1.value ) + - '&form_addr2=' + encodeURIComponent(f.form_addr2.value ) + - '&form_city=' + encodeURIComponent(f.form_city.value ) + - '&form_state=' + encodeURIComponent(f.form_state.value ) + - '&form_zip=' + encodeURIComponent(f.form_zip.value ) + - '&form_phone=' + encodeURIComponent(f.form_phone.value ) + - '&form_cms_id=' + encodeURIComponent(f.form_cms_id.value) + - '&csrf_token_form=' + ; + const params = new URLSearchParams({ + csrf_token_form: , + form_addr1: f.form_addr1.value, + form_addr2: f.form_addr2.value, + form_attn: f.form_attn.value, + form_city: f.form_city.value, + form_cms_id: f.form_cms_id.value, + form_name: f.form_name.value, + form_phone: f.form_phone.value, + form_state: f.form_state.value, + form_zip: f.form_zip.value + }); + var search_list = 'ins_list.php?' + params; top.restoreSession(); $("#form_list").load( search_list ).show(); diff --git a/interface/reports/collections_report.php b/interface/reports/collections_report.php index b24e5cee82b4..b06bc344f096 100644 --- a/interface/reports/collections_report.php +++ b/interface/reports/collections_report.php @@ -412,7 +412,11 @@ function editInvoice(e, id) { function toEncounter(newpid, enc) { top.restoreSession(); - top.RTop.location = "/interface/patient_file/summary/demographics.php?set_pid=" + encodeURIComponent(newpid) + "&set_encounterid=" + encodeURIComponent(enc); + const params = new URLSearchParams({ + set_encounterid: enc, + set_pid: newpid + }); + top.RTop.location = "/interface/patient_file/summary/demographics.php?" + params; } $(function () { diff --git a/interface/reports/destroyed_drugs_report.php b/interface/reports/destroyed_drugs_report.php index b914b71e2a49..88c7b2824813 100644 --- a/interface/reports/destroyed_drugs_report.php +++ b/interface/reports/destroyed_drugs_report.php @@ -130,7 +130,11 @@ function mapToTable($row): void // Process click on destroyed drug. function doclick(id, lot) { - dlgopen('../drugs/destroy_lot.php?drug=' + encodeURIComponent(id) + '&lot=' + encodeURIComponent(lot), '_blank', 600, 475); + const params = new URLSearchParams({ + drug: id, + lot: lot + }); + dlgopen('../drugs/destroy_lot.php?' + params, '_blank', 600, 475); } $(function () { diff --git a/interface/reports/encounters_report.php b/interface/reports/encounters_report.php index 4af91ac3b53c..e70dc15a20dd 100644 --- a/interface/reports/encounters_report.php +++ b/interface/reports/encounters_report.php @@ -204,7 +204,11 @@ function refreshme() { // Called to switch to the specified encounter having the specified DOS. function toEncounter(newpid, enc) { top.restoreSession(); - top.RTop.location = "/interface/patient_file/summary/demographics.php?set_pid=" + encodeURIComponent(newpid) + "&set_encounterid=" + encodeURIComponent(enc); + const params = new URLSearchParams({ + set_encounterid: enc, + set_pid: newpid + }); + top.RTop.location = "/interface/patient_file/summary/demographics.php?" + params; } diff --git a/interface/reports/front_receipts_report.php b/interface/reports/front_receipts_report.php index b18f26d4d14f..4eac03368c1d 100755 --- a/interface/reports/front_receipts_report.php +++ b/interface/reports/front_receipts_report.php @@ -62,8 +62,12 @@ // The OnClick handler for receipt display. function show_receipt(pid,timestamp) { - dlgopen('../patient_file/front_payment.php?receipt=1&patient=' + encodeURIComponent(pid) + - '&time=' + encodeURIComponent(timestamp), '_blank', 850, 550, '', '', { + const params = new URLSearchParams({ + patient: pid, + receipt: '1', + time: timestamp + }); + dlgopen('../patient_file/front_payment.php?' + params, '_blank', 850, 550, '', '', { onClosed: 'reload' }); } diff --git a/interface/reports/immunization_report.php b/interface/reports/immunization_report.php index 53c501362148..f989ecba1dda 100644 --- a/interface/reports/immunization_report.php +++ b/interface/reports/immunization_report.php @@ -512,9 +512,12 @@ class='datepicker form-control' function exportData() { let data = ; let csrf_token = ; + const params = new URLSearchParams({ + data: data, + csrf_token_form: csrf_token + }); dlgopen( - "../../library/ajax/immunization_export.php?csrf_token_form=" + encodeURIComponent(csrf_token) + - "&data=" + encodeURIComponent(data), + "../../library/ajax/immunization_export.php?" + params, 'Export', 'modal-xs', 300, diff --git a/interface/super/edit_layout.php b/interface/super/edit_layout.php index 595fb215b702..0f6d3c30fd53 100644 --- a/interface/super/edit_layout.php +++ b/interface/super/edit_layout.php @@ -1380,11 +1380,13 @@ function setListItemOptions(lino, seq, init) { // OK, list item IDs do apply so go get 'em. // This happens asynchronously so the generated code needs to stand alone. f[target].style.display = ''; - $.getScript('layout_listitems_ajax.php' + - '?listid=' + encodeURIComponent(list_id) + - '&target=' + encodeURIComponent(target) + - '¤t=' + encodeURIComponent(current) + - '&csrf_token_form=' + ); + const params = new URLSearchParams({ + csrf_token_form: , + current: current, + listid: list_id, + target: target + }); + $.getScript('layout_listitems_ajax.php?' + params); } // This is called whenever a condition's field ID selection is changed. @@ -1396,7 +1398,11 @@ function cidChanged(lino, seq) { // This invokes the popup to edit layout properties or add a new layout. function edit_layout_props(groupid) { var title = ; - dlgopen('edit_layout_props.php?layout_id=' + + '&group_id=' + encodeURIComponent(groupid), + const params = new URLSearchParams({ + group_id: groupid, + layout_id: + }); + dlgopen('edit_layout_props.php?' + params, '_blank', 775, 550, "", title); } @@ -2219,9 +2225,14 @@ function validateNewField(idpfx) { function layoutLook(){ var form = ; - var btnName = ; - var url = "../patient_file/encounter/view_form.php?isShow&id=0&formname=" + encodeURIComponent(form); - var title = ; + const btnName = ; + const params = new URLSearchParams({ + formname: form, + id: '0', + isShow: '' + }); + const url = "../patient_file/encounter/view_form.php?" + params; + const title = ; dlgopen(url, '_blank', 1250, 800, "", title); return false; } diff --git a/library/js/CustomTemplateApi.js b/library/js/CustomTemplateApi.js index 92f281c1667a..35723f8244d6 100644 --- a/library/js/CustomTemplateApi.js +++ b/library/js/CustomTemplateApi.js @@ -17,7 +17,12 @@ function doTemplateEditor(_this, event, oContext = '') { ccFlag = 'name'; } let title = '

'+ xl("Text Templates") +'

'; - let url = top.webroot_url + "/library/custom_template/custom_template.php?type=" + encodeURIComponent(id) + "&ccFlag=" + encodeURIComponent(ccFlag) + "&contextName=" + encodeURIComponent(oContext); + const params = new URLSearchParams({ + ccFlag: ccFlag, + contextName: oContext, + type: id + }); + let url = top.webroot_url + "/library/custom_template/custom_template.php?" + params; dlgopen(url, '', 'modal-lg', 800, '', '', { buttons: [ {text: xl('Do Nothing'), close: true, style: 'secondary'} diff --git a/library/js/ajax_functions_writer.js b/library/js/ajax_functions_writer.js index 02ce911509b5..a8cbe88596e8 100644 --- a/library/js/ajax_functions_writer.js +++ b/library/js/ajax_functions_writer.js @@ -34,7 +34,10 @@ function moveOptions_11(theSelFrom, theSelTo) { var patt = /\?\?/; var result = patt.test(str); if (result) { - url = 'quest_popup.php?content=' + encodeURIComponent(str); + const params = new URLSearchParams({ + content: str + }); + url = 'quest_popup.php?' + params; // patched out 1/19/24 sjp better to be a dialog. //window.open(url, 'quest_pop', 'width=640,height=190,menubar=no,toolbar=0,location=0, directories=0, status=0,left=400,top=375'); dlgopen(url,'quest_pop', 640, 250, '', '', { diff --git a/library/js/oeUI/insurance/EditPolicyScreenController.js b/library/js/oeUI/insurance/EditPolicyScreenController.js index 1d26db6b6e5a..0efb9d99fc28 100644 --- a/library/js/oeUI/insurance/EditPolicyScreenController.js +++ b/library/js/oeUI/insurance/EditPolicyScreenController.js @@ -391,13 +391,15 @@ export class EditPolicyScreenController #verifyAddress(evt, address) { window.top.restoreSession(); - dlgopen('../../practice/address_verify.php?address1=' + encodeURIComponent(address.street) + - '&address2=' + encodeURIComponent(address.street_line_2) + - '&city=' + encodeURIComponent(address.city) + - '&state=' + encodeURIComponent(address.state) + - '&zip5=' + encodeURIComponent(address.postal_code.substring(0,5)) + - '&zip4=' + encodeURIComponent(address.postal_code.substring(5,9)) - , '_blank', 400, 150, '', xl('Address Verify')); + const params = new URLSearchParams({ + address1: address.street, + address2: address.street_line_2, + city: address.city, + state: address.state, + zip4: address.postal_code.substring(5, 9), + zip5: address.postal_code.substring(0, 5) + }); + dlgopen('../../practice/address_verify.php?' + params, '_blank', 400, 150, '', xl('Address Verify')); return false; } diff --git a/library/js/utility.js b/library/js/utility.js index db8ec487c845..d2b428e8b9d4 100644 --- a/library/js/utility.js +++ b/library/js/utility.js @@ -538,9 +538,12 @@ if (typeof top.userDebug !== 'undefined' && (top.userDebug === '1' || top.userDe return; } - let url = webroot + '/interface/smart/ehr-launch-client.php?intent=' - + encodeURIComponent(intent) + '&client_id=' + encodeURIComponent(clientId) - + "&csrf_token=" + encodeURIComponent(csrfToken); + const params = new URLSearchParams({ + client_id: clientId, + csrf_token: csrfToken, + intent: intent + }); + let url = webroot + '/interface/smart/ehr-launch-client.php?' + params; let title = node.dataset.smartName || JSON.stringify(xl("Smart App")); // we allow external dialog's here because that is what a SMART app is let height = window.top.innerHeight; // do our full height here @@ -571,16 +574,22 @@ if (typeof top.userDebug !== 'undefined' && (top.userDebug === '1' || top.userDe dlgclose(); window.top.removeEventListener('message', windowMessageHandler); // loadFrame already handles webroot and /interface/ prefix. - let editUrl = '/smart/admin-client.php?action=' + encodeURIComponent("external-cdr/edit/" + data.dsiId) - + "&csrf_token=" + encodeURIComponent(csrfToken); + const editParams = new URLSearchParams({ + csrf_token: csrfToken, + action: "external-cdr/edit/" + data.dsiId + }); + let editUrl = '/smart/admin-client.php?' + editParams; window.parent.left_nav.loadFrame('adm', 'adm0', editUrl); } }; window.top.addEventListener('message', windowMessageHandler); - let url = webroot + '/interface/smart/admin-client.php?action=' + encodeURIComponent("external-cdr/cdr-info") - + '&serviceId=' + encodeURIComponent(dsi) - + "&csrf_token=" + encodeURIComponent(csrfToken); + const params = new URLSearchParams({ + action: "external-cdr/cdr-info", + csrf_token: csrfToken, + serviceId: dsi + }); + let url = webroot + '/interface/smart/admin-client.php?' + params; let title = node.dataset.smartName || JSON.stringify(xl("Smart App")); // we allow external dialog's here because that is what a SMART app is let height = window.top.innerHeight; // do our full height here diff --git a/portal/add_edit_event_user.php b/portal/add_edit_event_user.php index 9d6eece3fce3..318b46942493 100644 --- a/portal/add_edit_event_user.php +++ b/portal/add_edit_event_user.php @@ -840,10 +840,15 @@ function find_available() { s = se.options[se.selectedIndex].value; - var formDate = document.getElementById('form_date'); - var url = 'find_appt_popup_user.php?bypatient&providerid=' + encodeURIComponent(s) + '&catid=' + encodeURIComponent(catId) - + '&startdate=' + encodeURIComponent(formDate.value); - var params = { + const formDate = document.getElementById('form_date'); + const urlParams = new URLSearchParams({ + bypatient: '', + catid: catId, + providerid: s, + startdate: formDate.value + }); + const url = 'find_appt_popup_user.php?' + urlParams; + const dialogParams = { buttons: [ {text: , close: true, style: 'danger btn-sm'} @@ -852,7 +857,7 @@ function find_available() { dialogId: 'apptDialog', type: 'iframe' }; - dlgopen(url, 'apptFind', 'modal-md', 300, '', 'Find Date', params); + dlgopen(url, 'apptFind', 'modal-md', 300, '', 'Find Date', dialogParams); } // Check for errors when the form is submitted. diff --git a/portal/index.php b/portal/index.php index 0a926814ed1a..8662f0de0967 100644 --- a/portal/index.php +++ b/portal/index.php @@ -767,7 +767,8 @@ function callServer(action) { let url = "./index.php?site=" + ; // Goto landing page. let redirectUrl = $("#redirect").val(); if (redirectUrl) { - url += "&redirect=" + encodeURIComponent(redirectUrl); + const params = new URLSearchParams({ redirect: redirectUrl }); + url += "&" + params; } window.location.href = url; } else if (action === "reset_password") { diff --git a/portal/patient/scripts/app/onsiteactivityviews.js b/portal/patient/scripts/app/onsiteactivityviews.js index 2fe2c8dab770..bc870f43e0f7 100644 --- a/portal/patient/scripts/app/onsiteactivityviews.js +++ b/portal/patient/scripts/app/onsiteactivityviews.js @@ -37,19 +37,28 @@ const actpage = { function showPaymentModal(cpid, recid) { let title = 'Patient Online Payment'; + const urlParams = new URLSearchParams({ + pid: cpid, + recid: recid, + user: cuser + }); let params = { buttons: [ {text: 'Help', close: false, style: 'info btn-sm', id: 'formHelp'}, {text: 'Done', style: 'danger btn-sm', close: true}], onClosed: 'reload', type: 'GET', - url: './../portal_payment.php?pid=' + encodeURIComponent(cpid) + '&user=' + encodeURIComponent(cuser) + '&recid=' + encodeURIComponent(recid) + url: './../portal_payment.php?' + urlParams }; dlgopen('', '', 'modal-lg', 625, '', '', params); } function showProfileModal(cpid) { let title = 'Profile Edits' + ' '; + const urlParams = new URLSearchParams({ + pid: cpid, + user: cuser + }); let params = { buttons: [ {text: 'Help', close: false, style: 'info btn-sm', id: 'formHelp'}, @@ -60,20 +69,25 @@ const actpage = { sizeHeight: 'full', allowDrag: false, type: 'GET', - url: top.webroot_url + '/portal/patient/patientdata?pid=' + encodeURIComponent(cpid) + '&user=' + encodeURIComponent(cuser) + url: top.webroot_url + '/portal/patient/patientdata?' + urlParams }; dlgopen('', '', 'modal-xl', '', '', title, params); } function showDocumentModal(cpid, recid) { let title = 'Audit Document'; + const urlParams = new URLSearchParams({ + pid: cpid, + recid: recid, + user: cuser + }); let params = { buttons: [ {text: 'Help', close: false, style: 'info btn-sm', id: 'formHelp'}, {text: 'Done', style: 'danger btn-sm', close: true}], sizeHeight: 'full', onClosed: 'reload', - url: './onsitedocuments?pid=' + cpid + '&user=' + encodeURIComponent(cuser) + '&recid=' + encodeURIComponent(recid) + url: './onsitedocuments?' + urlParams }; dlgopen('', '', 'modal-lg', '', '', '', params); } diff --git a/portal/patient/scripts/app/onsitedocuments.js b/portal/patient/scripts/app/onsitedocuments.js index 6f436018b68c..9616a49434f9 100644 --- a/portal/patient/scripts/app/onsitedocuments.js +++ b/portal/patient/scripts/app/onsitedocuments.js @@ -259,24 +259,26 @@ var page = { page.onsiteDocument.set('encounter', page.encounterFormId); let url = ''; if (page.encounterFormName.startsWith('LBF') || page.encounterFormName.startsWith('HIS')) { - url = webroot_url + - "/interface/forms/LBF/printable.php?return_content=" + - "&formname=" + encodeURIComponent(page.encounterFormName) + - "&formid=" + encodeURIComponent(page.encounterFormId) + - "&visitid=0&patientid=" + encodeURIComponent(cpid); + const params = new URLSearchParams({ + formid: page.encounterFormId, + formname: page.encounterFormName, + patientid: cpid, + return_content: '', + visitid: 0 + }); + url = webroot_url + "/interface/forms/LBF/printable.php?" + params; } else { // first, ensure form name is valid if (!page.verifyValidEncounterForm(page.encounterFormName)) { asyncAlertMsg("There is an issue loading form. Form does not exist."); return false; } - url = webroot_url + - "/interface/forms/" + encodeURIComponent(page.encounterFormName) + "/patient_portal.php" + - "?formid=" + encodeURIComponent(page.encounterFormId); + const params = new URLSearchParams({ + formid: page.encounterFormId + }); + url = webroot_url + "/interface/forms/" + encodeURIComponent(page.encounterFormName) + "/patient_portal.php?" + params; if (page.isQuestionnaire) { - url = webroot_url + - "/interface/forms/questionnaire_assessments/patient_portal.php" + - "?formid=" + encodeURIComponent(page.encounterFormId); + url = webroot_url + "/interface/forms/questionnaire_assessments/patient_portal.php?" + params; } } fetch(url).then(response => { @@ -329,24 +331,26 @@ var page = { page.onsiteDocument.set('encounter', page.encounterFormId); let url = ''; if (page.encounterFormName.startsWith('LBF') || page.encounterFormName.startsWith('HIS')) { - url = webroot_url + - "/interface/forms/LBF/printable.php?return_content=" + - "&formname=" + encodeURIComponent(page.encounterFormName) + - "&formid=" + encodeURIComponent(page.encounterFormId) + - "&visitid=0&patientid=" + encodeURIComponent(cpid); + const params = new URLSearchParams({ + formid: page.encounterFormId, + formname: page.encounterFormName, + patientid: cpid, + return_content: '', + visitid: 0 + }); + url = webroot_url + "/interface/forms/LBF/printable.php?" + params; } else { // first, ensure form name is valid if (!page.verifyValidEncounterForm(page.encounterFormName)) { asyncAlertMsg("There is an issue loading form. Form does not exist."); return false; } - url = webroot_url + - "/interface/forms/" + encodeURIComponent(page.encounterFormName) + "/patient_portal.php" + - "?formid=" + encodeURIComponent(page.encounterFormId); + const params = new URLSearchParams({ + formid: page.encounterFormId + }); + url = webroot_url + "/interface/forms/" + encodeURIComponent(page.encounterFormName) + "/patient_portal.php?" + params; if (page.isQuestionnaire) { - url = webroot_url + - "/interface/forms/questionnaire_assessments/patient_portal.php" + - "?formid=" + encodeURIComponent(page.encounterFormId); + url = webroot_url + "/interface/forms/questionnaire_assessments/patient_portal.php?" + params; } } fetch(url).then(response => { @@ -461,7 +465,8 @@ var page = { if (autoRender + auditRender > 0) { auditRender = 0; autoRender = 0; - location.assign(webroot_url + "/portal/patient/onsitedocuments?pid=" + encodeURIComponent(cpid)) + const params = new URLSearchParams({ pid: cpid }); + location.assign(webroot_url + "/portal/patient/onsitedocuments?" + params); } }); // post to submit and save content remote form. @@ -477,7 +482,8 @@ var page = { if (autoRender + auditRender > 0) { auditRender = 0; autoRender = 0; - location.assign(webroot_url + "/portal/patient/onsitedocuments?pid=" + encodeURIComponent(cpid)); + const params = new URLSearchParams({ pid: cpid }); + location.assign(webroot_url + "/portal/patient/onsitedocuments?" + params); } } @@ -798,12 +804,15 @@ var page = { // a layout form if (page.encounterFormName) { let url = ''; + const params = new URLSearchParams({ + formname: page.encounterFormName, + formOrigin: page.formOrigin, + id: 0, + isPortal: isPortal ? 1 : 0 + }); if (page.encounterFormName.startsWith('LBF') || page.encounterFormName.startsWith('HIS')) { // iframe from template directive {EncounterDocument:LBFxxxxx} for a LBF form - url = webRoot + "/interface/forms/LBF/new.php" + "" + - "?isPortal=" + encodeURIComponent(isPortal ? 1 : 0) + - "&formOrigin=" + encodeURIComponent(page.formOrigin) + - "&formname=" + encodeURIComponent(page.encounterFormName) + "&id=0"; + url = webRoot + "/interface/forms/LBF/new.php?" + params; } else { // iframe from template directive {EncounterDocument:xxxxx} for a native form // first, ensure form name is valid @@ -811,15 +820,9 @@ var page = { asyncAlertMsg("There is an issue loading form. Form does not exist."); return false; } - url = webRoot + "/interface/forms/" + encodeURIComponent(page.encounterFormName) + "/new.php" + - "?isPortal=" + encodeURIComponent(isPortal ? 1 : 0) + - "&formOrigin=" + encodeURIComponent(page.formOrigin) + - "&formname=" + encodeURIComponent(page.encounterFormName) + "&id=0"; + url = webRoot + "/interface/forms/" + encodeURIComponent(page.encounterFormName) + "/new.php?" + params; if (page.isQuestionnaire) { - url = webRoot + "/interface/forms/questionnaire_assessments/questionnaire_assessments.php" + - "?isPortal=" + encodeURIComponent(isPortal ? 1 : 0) + - "&formOrigin=" + encodeURIComponent(page.formOrigin) + - "&formname=" + encodeURIComponent(page.encounterFormName) + "&id=0"; + url = webRoot + "/interface/forms/questionnaire_assessments/questionnaire_assessments.php?" + params; } } document.getElementById('encounterForm').src = url; diff --git a/portal/portal_payment.php b/portal/portal_payment.php index a734554da528..5832fc02773b 100644 --- a/portal/portal_payment.php +++ b/portal/portal_payment.php @@ -807,7 +807,11 @@ function make_insurance() { $("#mode").val("portal-save"); let inv_values = JSON.stringify(getFormObj('invoiceForm')); let extra_values = JSON.stringify(getFormObj('paymentForm')); - let extra = "&inv_values=" + encodeURIComponent(inv_values) + "&extra_values=" + encodeURIComponent(extra_values); + const params = new URLSearchParams({ + extra_values: extra_values, + inv_values: inv_values + }); + let extra = "&" + params; let flag = 0 let liburl = './lib/paylib.php'; $.ajax({ diff --git a/portal/sign/assets/signer_api.js b/portal/sign/assets/signer_api.js index 27c58a770cb9..7fa46dcd9549 100644 --- a/portal/sign/assets/signer_api.js +++ b/portal/sign/assets/signer_api.js @@ -254,7 +254,10 @@ var bindFetch = ''; // $(function () { let url = top.webroot_url ? top.webroot_url : webRoot; - url += "/portal/sign/assets/signer_modal.php?isPortal=" + encodeURIComponent(isPortal); + const params = new URLSearchParams({ + isPortal: isPortal + }); + url += "/portal/sign/assets/signer_modal.php?" + params; fetch(url, { credentials: 'include' }).then(jsonTemplate => jsonTemplate.json()).then(jsonTemplate => { diff --git a/templates/prescription/general_edit.html.twig b/templates/prescription/general_edit.html.twig index 6d22d7e93921..b080a7d49b75 100644 --- a/templates/prescription/general_edit.html.twig +++ b/templates/prescription/general_edit.html.twig @@ -434,10 +434,10 @@ // Existing prescription - use the popup dispense flow const params = new URLSearchParams({ drug_id: drugId, - prescription: prescriptionId, - quantity: f.disp_quantity.value, + encounter: f.dispense_encounter_id.value, fee: f.disp_fee.value, - encounter: f.dispense_encounter_id.value + prescription: prescriptionId, + quantity: f.disp_quantity.value }); const promise = dlgopen('interface/drugs/dispense_drug.php?' + params.toString(), '_blank', 400, 200, false, {{ "Dispense Drug"|xlj }}, { From 09390def20c5a63c34ae89370ae069bdb5e49461 Mon Sep 17 00:00:00 2001 From: Sherwin Gaddis Date: Wed, 31 Dec 2025 14:08:21 -0500 Subject: [PATCH 030/139] fax service and eRx titles (#9874) * fax service and eRx titles * suggested changes completed * adding credit * Fix PHPStan issues * Fix PHPStan issues again * Fix Rector errors * hopefully evens errors --------- Co-authored-by: Jerry Padgett --- interface/eRx.php | 2 +- .../.phpstan/SignalWireStubs.php | 20 + .../custom_modules/oe-module-faxsms/WARP.md | 674 +++++++++++++ .../oe-module-faxsms/composer.json | 3 +- .../library/webhook_receiver.php | 272 +++++ .../oe-module-faxsms/messageUI.php | 63 +- .../oe-module-faxsms/openemr.bootstrap.php | 2 +- .../oe-module-faxsms/phpstan.neon | 3 + .../custom_modules/oe-module-faxsms/setup.php | 40 + .../sql/add_fax_patient_columns.sql | 42 + .../src/Controller/AppDispatch.php | 86 +- .../src/Controller/FaxDocumentService.php | 365 +++++++ .../src/Controller/SignalWireClient.php | 936 ++++++++++++++++++ .../src/Enums/ServiceType.php | 71 ++ .../src/Exception/FaxDocumentException.php | 17 + .../src/Exception/FaxException.php | 17 + .../src/Exception/FaxNotFoundException.php | 17 + phpstan.neon.dist | 1 + src/Common/Utils/FileUtils.php | 8 +- templates/patient/partials/erx.html.twig | 4 +- 20 files changed, 2592 insertions(+), 51 deletions(-) create mode 100644 interface/modules/custom_modules/oe-module-faxsms/.phpstan/SignalWireStubs.php create mode 100644 interface/modules/custom_modules/oe-module-faxsms/WARP.md create mode 100644 interface/modules/custom_modules/oe-module-faxsms/library/webhook_receiver.php create mode 100644 interface/modules/custom_modules/oe-module-faxsms/phpstan.neon create mode 100644 interface/modules/custom_modules/oe-module-faxsms/sql/add_fax_patient_columns.sql create mode 100644 interface/modules/custom_modules/oe-module-faxsms/src/Controller/FaxDocumentService.php create mode 100644 interface/modules/custom_modules/oe-module-faxsms/src/Controller/SignalWireClient.php create mode 100644 interface/modules/custom_modules/oe-module-faxsms/src/Enums/ServiceType.php create mode 100644 interface/modules/custom_modules/oe-module-faxsms/src/Exception/FaxDocumentException.php create mode 100644 interface/modules/custom_modules/oe-module-faxsms/src/Exception/FaxException.php create mode 100644 interface/modules/custom_modules/oe-module-faxsms/src/Exception/FaxNotFoundException.php diff --git a/interface/eRx.php b/interface/eRx.php index c3ded80e4c74..2900ede5ed0d 100644 --- a/interface/eRx.php +++ b/interface/eRx.php @@ -121,7 +121,7 @@ function array_key_exists_default($key, $search, $default = null) if (count($errors) > 0) { ?> - +
    ' . text($message) . ''; diff --git a/interface/modules/custom_modules/oe-module-faxsms/.phpstan/SignalWireStubs.php b/interface/modules/custom_modules/oe-module-faxsms/.phpstan/SignalWireStubs.php new file mode 100644 index 000000000000..0880975625ab --- /dev/null +++ b/interface/modules/custom_modules/oe-module-faxsms/.phpstan/SignalWireStubs.php @@ -0,0 +1,20 @@ +encryptStandard(json_encode($credentials)); +``` + +**Never store API keys, passwords, or tokens in plain text.** + +### ACL Requirements + +Minimum ACL for module features: +- **SMS/Fax Management**: `['patients', 'docs']` +- **Setup Services**: `['admin', 'docs']` +- **Notifications**: `['admin', 'demo']` + +Verify ACL in controllers: +```php +$clientApp->verifyAcl(); // Checks ACL before allowing access +``` + +## Vendor Integration + +### Adding a New Vendor + +To add a new SMS or Fax vendor: + +1. **Create Controller Class** in `src/Controller/` extending `AppDispatch`: +```php +namespace OpenEMR\Modules\FaxSMS\Controller; + +class NewVendorClient extends AppDispatch +{ + public function authenticate(): bool { /* ... */ } + public function sendFax(): string|bool { /* ... */ } + public function sendSMS(): mixed { /* ... */ } + public function sendEmail(): mixed { /* ... */ } + public function fetchReminderCount(): string|bool { /* ... */ } +} +``` + +2. **Update Service Type Constants** in `AppDispatch.php` or config + +3. **Add Setup UI** in `setup.php` or create new setup file + +4. **Update Bootstrap Menu** in `openemr.bootstrap.php` to include new vendor + +5. **Register in Dispatcher** - Ensure `AppDispatch::getApiService()` can instantiate your class + +### Current Vendor API Versions + +- **Twilio**: Uses Twilio REST API (native implementation) +- **RingCentral**: Uses `ringcentral/ringcentral-php` 3.0.3 (via Composer) +- **etherFAX**: Custom SDK in `src/EtherFax/` +- **SignalWire**: Uses `signalwire-community/signalwire` 3.2.0 (via Composer) + +## UI Components + +### Main Message UI + +**File**: `messageUI.php` + +Features: +- Tabbed interface (Received / Sent / Queue) +- Date range filtering +- View/download fax documents +- Send new fax/SMS +- Document upload (Dropzone.js) +- TIFF and PDF preview support + +**JavaScript Libraries**: +- Dropzone.js - File uploads +- jsPDF - PDF generation +- jsTIFF - TIFF rendering +- datetime-picker - Date selection + +### Contact Dialog + +**File**: `contact.php` + +Modal dialog for selecting recipient and sending messages: +- Patient search +- Provider search +- Direct number entry +- Document attachment +- Preview before send + +## Background Services + +### Appointment Reminders + +**File**: `library/rc_sms_notification.php` + +Runs appointment reminder notifications via: +- **Manual**: Click menu item "Send Email Reminders" / "Test Email Reminders" +- **Scheduled**: Can be triggered via OpenEMR background services or cron + +**Configuration**: +- Hours before appointment to notify (set in Twilio setup) +- Message template with replaceable tags: `***NAME***`, `***PROVIDER***`, `***DATE***`, `***STARTTIME***`, `***ENDTIME***`, `***ORG***` + +### Background Service Integration + +To integrate with OpenEMR's background services: + +```sql +INSERT INTO background_services (name, title, active, running, next_run, + execute_interval, function, require_once, sort_order) +VALUES ('FaxSMS_Notifications', 'FaxSMS Appointment Notifications', 1, 0, NOW(), + 3600, 'send_faxsms_notifications', + '/interface/modules/custom_modules/oe-module-faxsms/library/run_notifications.php', + 100); +``` + +## Common Issues & Troubleshooting + +### Issue: Module doesn't appear in menu + +**Cause**: Global variables not set or module not enabled + +**Solution**: +1. Check module is installed and enabled in Modules Manager +2. Verify globals exist: `SELECT * FROM globals WHERE gl_name LIKE 'oefax%'` +3. Log out and back in after configuration changes + +### Issue: Credentials not saving + +**Cause**: Encryption failure or database permissions + +**Solution**: +1. Check `sites//documents` directory is writable (CryptoGen needs keys) +2. Verify `module_faxsms_credentials` table exists +3. Check PHP error logs for CryptoGen errors + +### Issue: "Not Authorised" errors + +**Cause**: User lacks required ACL permissions + +**Solution**: +1. Verify user has `['patients', 'docs']` ACL at minimum +2. For setup: User needs `['admin', 'docs']` ACL +3. Check ACL in: Administration → ACL Administrator + +### Issue: Background notifications not running + +**Cause**: Background services not configured or credentials invalid + +**Solution**: +1. Test manually first: Menu → Services → Notifications → Test Email Reminders +2. Verify credentials in setup are valid +3. Check `background_services` table for service entry +4. Review logs in `sites//documents/logs_and_misc/` + +## Development Guidelines + +### Code Standards + +- **PSR-12**: All new code must follow PSR-12 Extended Coding Style +- **Namespacing**: Use `OpenEMR\Modules\FaxSMS\*` namespace for src/ classes +- **Encryption**: Always encrypt sensitive credentials before storage +- **ACL**: Always verify ACL before allowing actions +- **Legacy Functions**: Avoid deprecated OpenEMR database functions + +### Database Queries + +Use modern QueryUtils instead of legacy functions: + +```php +use OpenEMR\Common\Database\QueryUtils; + +// Instead of sqlQuery() +$row = QueryUtils::querySingleRow($sql, $binds); + +// Instead of sqlStatement() + loop +$rows = QueryUtils::fetchRecords($sql, $binds); +``` + +### Testing Credentials + +Use **demo/sandbox modes** when testing: +- Twilio: Offers test credentials and phone numbers +- etherFAX: Has demo mode (toggle in setup) +- RingCentral: Provides sandbox environment +- SignalWire: Offers sandbox space for testing + +**Never test with production credentials during development.** + +### Session Management + +The module uses `$sessionAllowWrite = true` in entry points to ensure session writes: + +```php +$sessionAllowWrite = true; +require_once(__DIR__ . "/../../../globals.php"); +``` + +This is required for CLI scripts and background services. + +## Key Dependencies + +### Composer Packages + +```json +{ + "require": { + "ringcentral/ringcentral-php": "3.0.3" + } +} +``` + +**Important**: Each module has its own `composer.json`. Do **NOT** run `composer dump-autoload` in the OpenEMR root directory. + +### Module Dependencies + +- OpenEMR 7.0.3+ +- PHP 8.1+ (uses modern PHP features: enums, first-class callables) +- Laminas Framework (for module management) +- Symfony EventDispatcher + +## File Upload & Document Integration + +### Document Categories + +Module auto-creates "FAX" category in `categories` table on installation: + +```sql +INSERT INTO categories (name, value, parent, aco_spec) +VALUES ('FAX', '', 1, 'patients|docs'); +``` + +Received faxes are stored as patient documents under this category. + +### File Storage + +- **Fax Documents**: Stored in `sites//documents//` +- **Temporary Uploads**: Uses OpenEMR's temp directory system +- **MIME Types**: Supports TIFF, PDF, JPEG, PNG + +## API Endpoints + +The module uses internal routing via `_ACTION_COMMAND` parameter: + +**Format**: `?type=&_ACTION_COMMAND=` + +**Examples**: +- `?type=sms&_ACTION_COMMAND=sendSMS` - Send SMS +- `?type=fax&_ACTION_COMMAND=sendFax` - Send fax +- `?type=fax&_ACTION_COMMAND=retrieveFax` - Get fax from queue +- `?type=sms&_ACTION_COMMAND=fetchReminderCount` - Get reminder count + +Routes are handled by `AppDispatch::dispatchActions()` and mapped to controller methods. + +## JavaScript Integration + +### Global Variables + +Set in page header for JavaScript access: + +```javascript +let pid = ; +let portalUrl = ""; +let currentService = ""; // '1'=RC, '2'=Twilio, '3'=etherFAX, '6'=SignalWire +let serviceType = ""; // 'sms', 'fax', 'email' +``` + +### Dialog System + +Uses OpenEMR's `dlgopen()` for modal dialogs: + +```javascript +dlgopen(url, dialogName, modalSize, height, allowResize, title, options); +``` + +**Modal Sizes**: `'modal-sm'`, `'modal-md'`, `'modal-lg'`, `'modal-xl'` + +## Useful Commands + +### View Module Status +```bash +mysql -u local_openemr -p 5qy3xkMjP4A2US1u7Qv -e " + SELECT mod_name, mod_directory, enabled, mod_ui_active + FROM modules + WHERE mod_directory = 'oe-module-faxsms';" +``` + +### Check Globals +```bash +mysql -u local_openemr -p 5qy3xkMjP4A2US1u7Qv -e " + SELECT gl_name, gl_value + FROM globals + WHERE gl_name LIKE 'oefax%' OR gl_name LIKE 'oesms%' OR gl_name = 'oe_enable_email';" +``` + +### View Credentials (Encrypted) +```bash +mysql -u local_openemr -p 5qy3xkMjP4A2US1u7Qv -e " + SELECT id, auth_user, vendor, updated + FROM module_faxsms_credentials;" +``` + +### Check Message Queue +```bash +mysql -u local_openemr -p 5qy3xkMjP4A2US1u7Qv -e " + SELECT id, account, job_id, date, calling_number, called_number + FROM oe_faxsms_queue + ORDER BY date DESC LIMIT 20;" +``` + +## References + +- **OpenEMR Module System**: `/Documentation/MODULES.md` (in OpenEMR root) +- **Event System**: `/src/Events/` (in OpenEMR root) +- **Twilio API**: https://www.twilio.com/docs/sms +- **RingCentral API**: https://developers.ringcentral.com/ +- **etherFAX API**: https://www.etherfax.net/developers/ +- **SignalWire API**: https://developer.signalwire.com/fax/ + +## Best Practices + +1. **Always encrypt credentials** using CryptoGen before database storage +2. **Verify ACL** at the start of every controller action +3. **Use service type routing** to support multiple vendors seamlessly +4. **Test in demo/sandbox mode** before using production API keys +5. **Log errors** to OpenEMR's logging system for debugging +6. **Respect session management** - use `$sessionAllowWrite = true` where needed +7. **Follow OpenEMR coding standards** - PSR-12, QueryUtils, modern PHP +8. **Document vendor-specific quirks** in controller comments +9. **Handle API failures gracefully** with user-friendly error messages +10. **Keep vendor SDKs updated** but test thoroughly after updates + +## SignalWire Fax Integration + +### Overview + +SignalWire provides a Twilio-compatible REST API for faxing, making it an excellent alternative or addition to existing fax providers. The integration uses the `signalwire-community/signalwire` PHP SDK. + +### Setup Requirements + +**Credentials Needed**: +1. **Space URL**: Your SignalWire space (e.g., `example.signalwire.com`) +2. **Project ID**: UUID from SignalWire dashboard +3. **API Token**: Generated API token from project settings +4. **Fax Number**: A fax-enabled phone number in E.164 format + +### Configuration Steps + +1. **Sign up for SignalWire**: + - Visit https://signalwire.com + - Create an account and project + - Note your Space URL from the dashboard + +2. **Generate API Token**: + - Navigate to project settings + - Create a new API token with Fax permissions + - Save the token securely + +3. **Provision Fax Number**: + - Purchase or port a fax-capable phone number + - Ensure the number is configured for fax + +4. **Configure in OpenEMR**: + - Navigate to: **Modules → Manage Modules → FaxSMS Module → Config** + - Select "SignalWire Fax" from Fax vendor dropdown + - Click "Setup Fax Account" + - Enter your credentials: + - Space URL (without https://) + - Project ID + - API Token + - Fax Number (+1XXXXXXXXXX) + - Check "Production Mode" if using production credentials + - Save configuration + +5. **Configure Webhook** (for receiving faxes): + - In SignalWire dashboard, select your fax number + - Configure "Fax Settings": + - When a fax is received: Webhook + - URL: `https://your-openemr.com/interface/modules/custom_modules/oe-module-faxsms/library/webhook_receiver.php?type=fax&vendor=signalwire` + - Method: POST + - Content-Type: application/x-www-form-urlencoded + +### Features + +**Sending Faxes**: +- Send faxes from patient documents +- Send faxes from reports +- Support for PDF and TIFF documents +- Real-time status updates via webhooks +- Automatic retry on transient failures + +**Receiving Faxes**: +- Automatic webhook processing +- Media download and storage +- Integration with patient documents (when configured) +- Queue management and tracking + +### Webhook Security + +The webhook endpoint uses: +- `$ignoreAuth = true` for external access +- Vendor verification via URL parameters +- Encrypted credential storage +- Error logging for debugging + +### Troubleshooting SignalWire + +**Issue: Faxes not sending** +- Verify credentials are correct +- Check API token has Fax permissions +- Ensure fax number is in E.164 format +- Review error logs: `sites//documents/logs_and_misc/` + +**Issue: Webhooks not working** +- Verify webhook URL is publicly accessible +- Check webhook logs in error_log +- Ensure URL parameters are correct (`?type=fax&vendor=signalwire`) +- Test webhook with SignalWire's webhook testing tool + +**Issue: Media download fails** +- Verify temp directory is writable +- Check credentials are properly encrypted +- Review curl errors in error_log +- Ensure outbound HTTPS connections are allowed + +### API Rate Limits + +SignalWire applies standard rate limits: +- Check current limits in SignalWire documentation +- Monitor usage in SignalWire dashboard +- Implement exponential backoff for retries +- Cache fax status to minimize API calls + +### Cost Considerations + +- Faxes are billed per page +- Inbound and outbound rates may differ +- Check current pricing at https://signalwire.com/pricing +- Monitor usage to avoid unexpected costs + +## Next Steps + +When working on this module: + +1. **Review the specific issue** - What's not working? Error messages? +2. **Check relevant controller** - Which vendor service is affected? +3. **Verify configuration** - Are credentials set and valid? +4. **Check logs** - OpenEMR logs and vendor API logs +5. **Test in isolation** - Use vendor's test tools before debugging module code + +--- + +**Last Updated**: December 2025 +**For**: OpenEMR 7.0.3 / oe-module-faxsms v5.0.0 diff --git a/interface/modules/custom_modules/oe-module-faxsms/composer.json b/interface/modules/custom_modules/oe-module-faxsms/composer.json index 22525c3826ee..31dce874e32d 100644 --- a/interface/modules/custom_modules/oe-module-faxsms/composer.json +++ b/interface/modules/custom_modules/oe-module-faxsms/composer.json @@ -18,6 +18,7 @@ "psr-4": {"OpenEMR\\Modules\\FaxSMS\\": "src/"} }, "require": { - "ringcentral/ringcentral-php": "3.0.3" + "ringcentral/ringcentral-php": "3.0.3", + "signalwire-community/signalwire": "^3.0" } } diff --git a/interface/modules/custom_modules/oe-module-faxsms/library/webhook_receiver.php b/interface/modules/custom_modules/oe-module-faxsms/library/webhook_receiver.php new file mode 100644 index 000000000000..afeca920dca1 --- /dev/null +++ b/interface/modules/custom_modules/oe-module-faxsms/library/webhook_receiver.php @@ -0,0 +1,272 @@ + $jsonData['call']['call_id'] ?? uniqid('fax_'), + 'Status' => ($vars['receive_fax_result'] === 'success') ? 'received' : 'failed', + 'From' => $jsonData['call']['from'] ?? '', + 'To' => $jsonData['call']['to'] ?? '', + 'NumPages' => $vars['receive_fax_pages'] ?? 0, + 'MediaUrl' => $vars['receive_fax_document'] ?? '', + 'Direction' => 'inbound', + 'ErrorCode' => $vars['receive_fax_result_code'] ?? '', + 'ErrorMessage' => $vars['receive_fax_result_text'] ?? '' + ]; + } else { + // This is a call event without fax data (call setup/teardown) + http_response_code(200); + header('Content-Type: application/xml'); + echo ''; + exit(); + } + } + // If JSON contains traditional fax data, map it to $_POST for processing + elseif (isset($jsonData['FaxSid']) || isset($jsonData['Sid'])) { + $_POST = $jsonData; + } + } +} + +// Get vendor type from query string +$vendor = $_GET['vendor'] ?? ''; +$type = $_GET['type'] ?? ''; + +if ($vendor !== 'signalwire' || $type !== 'fax') { + http_response_code(400); + error_log("Invalid webhook vendor or type: vendor=$vendor, type=$type"); + exit('Invalid request'); +} + +// Get webhook payload - initialize all variables explicitly for PHPStan +$faxSid = $_POST['FaxSid'] ?? $_POST['Sid'] ?? ''; +$status = $_POST['Status'] ?? $_POST['FaxStatus'] ?? 'unknown'; +$from = $_POST['From'] ?? $_POST['RemoteStationId'] ?? ''; +$to = $_POST['To'] ?? $_POST['OriginalTo'] ?? ''; +$numPages = $_POST['NumPages'] ?? $_POST['Pages'] ?? 0; +$mediaUrl = $_POST['MediaUrl'] ?? ''; +$direction = $_POST['Direction'] ?? 'inbound'; +$errorCode = $_POST['ErrorCode'] ?? ''; +$errorMessage = $_POST['ErrorMessage'] ?? ''; + +// Handle webhook validation/test (empty POST body) +if (empty($_POST) || empty($faxSid)) { + // SignalWire sends validation pings with empty POST + // Respond with 200 OK and TwiML to acknowledge webhook is working + http_response_code(200); + header('Content-Type: application/xml'); + echo ''; + exit(); +} + +try { + // Prepare fax data for storage + $faxData = [ + 'job_id' => $faxSid, + 'status' => $status, + 'from' => $from, + 'to' => $to, + 'num_pages' => $numPages, + 'media_url' => $mediaUrl, + 'direction' => $direction, + 'error_code' => $errorCode, + 'error_message' => $errorMessage, + 'raw_payload' => json_encode($_POST) + ]; + + // Check if this fax already exists in queue for this site + $existingFax = QueryUtils::querySingleRow( + "SELECT id, status, patient_id FROM oe_faxsms_queue WHERE job_id = ? AND site_id = ?", + [$faxSid, $siteId] + ); + + if ($existingFax) { + // Update existing fax with new status + QueryUtils::sqlStatementThrowException( + "UPDATE oe_faxsms_queue + SET status = ?, details_json = ?, date = NOW() + WHERE job_id = ? AND site_id = ?", + [$status, json_encode($faxData), $faxSid, $siteId] + ); + } else { + // Insert new fax + QueryUtils::sqlStatementThrowException( + "INSERT INTO oe_faxsms_queue + (job_id, calling_number, called_number, status, direction, details_json, site_id, date, receive_date) + VALUES (?, ?, ?, ?, ?, ?, ?, NOW(), NOW())", + [ + $faxSid, + $from, + $to, + $status, + $direction, + json_encode($faxData), + $siteId + ] + ); + } + + // If fax is received and has media, download and store it + if ($direction === 'inbound' && $status === 'received' && !empty($mediaUrl)) { + downloadAndStoreFaxMedia($faxSid, $mediaUrl, $from, $siteId, $existingFax['patient_id'] ?? 0); + } + + // Respond with success + http_response_code(200); + header('Content-Type: application/xml'); + echo ''; + +} catch (Throwable $e) { + error_log("Error processing SignalWire webhook: " . $e->getMessage()); + http_response_code(500); + exit('Internal server error'); +} + +/** + * Download fax media from SignalWire and store using FaxDocumentService + * + * @param string $faxSid + * @param string $mediaUrl + * @param string $fromNumber + * @param string $siteId + * @param int $patientId Patient ID if already assigned + * @return void + */ +function downloadAndStoreFaxMedia( + string $faxSid, + string $mediaUrl, + string $fromNumber, + string $siteId, + int $patientId = 0 +): void { + try { + // Get SignalWire credentials + $vendor = '_signalwire'; + $credentials = QueryUtils::querySingleRow( + "SELECT credentials FROM module_faxsms_credentials WHERE vendor = ? AND auth_user = 0", + [$vendor] + ); + + if (empty($credentials)) { + return; + } + + $crypto = new CryptoGen(); + $decrypted = $crypto->decryptStandard($credentials['credentials']); + $creds = json_decode($decrypted, true); + + $projectId = $creds['project_id'] ?? ''; + $apiToken = $creds['api_token'] ?? ''; + + if (empty($projectId) || empty($apiToken)) { + return; + } + + // Download the fax media with authentication using oeHttp + // SignalWire files.signalwire.com requires Bearer token, not Basic auth + try { + $httpRequest = oeHttpRequest::newArgs(oeHttp::client()); + + // Set up headers based on URL type + if (str_contains($mediaUrl, 'files.signalwire.com')) { + // Use Bearer token authentication for SignalWire file downloads + $httpRequest->usingHeaders([ + 'Authorization' => 'Bearer ' . $apiToken + ]); + } else { + // Use Basic authentication for API endpoints + $httpRequest->setOptions([ + 'auth' => [$projectId, $apiToken] + ]); + } + + $response = $httpRequest->get($mediaUrl); + $httpCode = $response->status(); + $mediaContent = $response->body(); + $contentTypeHeader = $response->header('Content-Type'); + $contentType = !empty($contentTypeHeader) ? $contentTypeHeader : 'application/pdf'; + + if ($httpCode !== 200 || empty($mediaContent)) { + return; + } + } catch (\Exception $e) { + error_log("SignalWire Webhook: HTTP request failed: " . $e->getMessage()); + return; + } + + // Try to find patient by phone number if not assigned + if ($patientId === 0) { + $faxService = new FaxDocumentService($siteId); + $patientId = $faxService->findPatientByPhone($fromNumber); + } + + // Store fax using FaxDocumentService + $faxService ??= new FaxDocumentService($siteId); + $result = $faxService->storeFaxDocument( + $faxSid, + $mediaContent, + $fromNumber, + $patientId, + $contentType + ); + + // Update queue with storage info + QueryUtils::sqlStatementThrowException( + "UPDATE oe_faxsms_queue + SET patient_id = ?, document_id = ?, media_path = ? + WHERE job_id = ? AND site_id = ?", + [ + $result['patient_id'], + $result['document_id'], + $result['media_path'], + $faxSid, + $siteId + ] + ); + } catch (\Exception $e) { + error_log("SignalWire Webhook: Error downloading/storing fax media: " . $e->getMessage()); + } +} diff --git a/interface/modules/custom_modules/oe-module-faxsms/messageUI.php b/interface/modules/custom_modules/oe-module-faxsms/messageUI.php index 12f4ea79a04a..6b8db97b133f 100644 --- a/interface/modules/custom_modules/oe-module-faxsms/messageUI.php +++ b/interface/modules/custom_modules/oe-module-faxsms/messageUI.php @@ -19,16 +19,15 @@ use OpenEMR\Core\Header; use OpenEMR\Events\Messaging\SendNotificationEvent; use OpenEMR\Modules\FaxSMS\Controller\AppDispatch; +use OpenEMR\Modules\FaxSMS\Enums\ServiceType; $assetBase = $GLOBALS['web_root'] . "/interface/modules/custom_modules/oe-module-faxsms/public"; $serviceType = $_REQUEST['type'] ?? ''; $clientApp = AppDispatch::getApiService($serviceType); $service = $clientApp::getServiceType(); -$title = $service == "1" ? xlt('RingCentral') : ''; -$title = $service == "2" ? xlt('Twilio SMS') : $title; -$title = $service == "3" ? xlt('etherFAX') : $title; -$title = $service == "4" ? xlt('Email') : $title; +$serviceEnum = ServiceType::fromValue($service); +$title = $serviceEnum?->getTranslatedDisplayName() ?? ''; $tabTitle = $serviceType == "sms" ? xlt('SMS') : ($serviceType == "email" ? xlt('Email') : xlt('FAX')); ?> @@ -70,10 +69,17 @@ $(".rc-hide").hide(); } else if (currentService == '2') { $(".etherfax").hide(); + $(".signalwire").hide(); } else if (currentService == '3') { $(".twilio").hide(); $(".etherfax-hide").hide(); $(".etherfax").show(); + $(".signalwire").hide(); + } else if (currentService == '6') { + $(".twilio").hide(); + $(".etherfax").hide(); + $(".rc-hide").hide(); + $(".signalwire").show(); } if (serviceType == 'sms') { $(".sms-hide").hide(); @@ -176,6 +182,53 @@ return false; }; + // Store the current fax id for assignment; used by setpatient callback + let currentFaxForAssignment = null; + + // Callback that patient finder calls on opener + function setpatient(pid, lname, fname, dob) { + if (!currentFaxForAssignment) { + alertMsg(); + return; + } + $.post('assignFax?type=fax', { + 'fax_id': currentFaxForAssignment, + 'patient_id': pid + }, function (response) { + if (response && response.success) { + alertMsg(); + retrieveMsgs(); + } else { + alertMsg((response && response.error) || ); + } + }, 'json').fail(function () { + alertMsg(); + }).always(function () { + currentFaxForAssignment = null; + }); + } + + const assignFaxToPatient = function (faxQueueId) { + try { + top.restoreSession(); + } catch (error) { + console.log('Session restore failed!'); + } + currentFaxForAssignment = faxQueueId; + // Open standard patient finder which calls opener.setpatient(...) + dlgopen('../../../main/calendar/find_patient_popup.php', '_blank', 750, 550, false, ); + }; + + function base64ToArrayBuffer(_base64Str) { + let binaryString = window.atob(_base64Str); + let binaryLen = binaryString.length; + let bytes = new Uint8Array(binaryLen); + for (let i = 0; i < binaryLen; i++) { + bytes[i] = binaryString.charCodeAt(i); + } + return bytes; + } + function showPrint(base64, _contentType = 'image/tiff') { const binary = atob(base64.replace(/\s/g, '')); const len = binary.length; @@ -977,7 +1030,7 @@ function makeRingoutCall(callTo, callFrom = '', id = '') { - + diff --git a/interface/modules/custom_modules/oe-module-faxsms/openemr.bootstrap.php b/interface/modules/custom_modules/oe-module-faxsms/openemr.bootstrap.php index 98023fe589d5..374094dea3fe 100644 --- a/interface/modules/custom_modules/oe-module-faxsms/openemr.bootstrap.php +++ b/interface/modules/custom_modules/oe-module-faxsms/openemr.bootstrap.php @@ -123,7 +123,7 @@ function oe_module_faxsms_add_menu_item(MenuEvent $event): MenuEvent $menuItem2->requirement = 0; $menuItem2->target = 'fax'; $menuItem2->menu_id = 'mod1'; - $menuItem2->label = $fax_label; + $menuItem2->label = $allowFax == '3' ? xlt("Manage etherFAX") : ($allowFax == '6' ? xlt("SignalWire Fax") : xlt("RingCentral FAX")); $menuItem2->url = "/interface/modules/custom_modules/oe-module-faxsms/messageUI.php?type=fax"; $menuItem2->children = []; $menuItem2->acl_req = ["patients", "demo"]; diff --git a/interface/modules/custom_modules/oe-module-faxsms/phpstan.neon b/interface/modules/custom_modules/oe-module-faxsms/phpstan.neon new file mode 100644 index 000000000000..03ba3eeb55b9 --- /dev/null +++ b/interface/modules/custom_modules/oe-module-faxsms/phpstan.neon @@ -0,0 +1,3 @@ +parameters: + scanFiles: + - .phpstan/SignalWireStubs.php diff --git a/interface/modules/custom_modules/oe-module-faxsms/setup.php b/interface/modules/custom_modules/oe-module-faxsms/setup.php index 2f39411d9126..65e27c6fb574 100644 --- a/interface/modules/custom_modules/oe-module-faxsms/setup.php +++ b/interface/modules/custom_modules/oe-module-faxsms/setup.php @@ -81,9 +81,15 @@ if (currentService == '2') { $(".etherfax").hide(); + $(".signalwire").hide(); } else if (currentService == '3') { $(".twilio").hide(); $(".etherfax").show(); + $(".signalwire").hide(); + } else if (currentService == '6') { + $(".twilio").hide(); + $(".etherfax").hide(); + $(".signalwire").show(); } }); @@ -245,6 +251,40 @@
+ +
+ +
+
+ + ' /> + +
+
+ + ' /> + +
+
+ + ' /> + +
+
+ + ' /> + +
* diff --git a/interface/modules/custom_modules/oe-module-faxsms/sql/add_fax_patient_columns.sql b/interface/modules/custom_modules/oe-module-faxsms/sql/add_fax_patient_columns.sql new file mode 100644 index 000000000000..b3eecd541304 --- /dev/null +++ b/interface/modules/custom_modules/oe-module-faxsms/sql/add_fax_patient_columns.sql @@ -0,0 +1,42 @@ +-- Migration: Add patient association and site tracking columns to oe_faxsms_queue +-- Author: SignalWire Integration Enhancement +-- Date: 2024-12-13 + +-- Add patient_id column for patient association +#IfMissingColumn oe_faxsms_queue patient_id +ALTER TABLE `oe_faxsms_queue` +ADD COLUMN `patient_id` INT(11) DEFAULT NULL COMMENT 'Patient ID if assigned', +ADD INDEX `idx_patient_id` (`patient_id`); +#EndIf + +-- Add document_id column to link to documents table +#IfMissingColumn oe_faxsms_queue document_id +ALTER TABLE `oe_faxsms_queue` +ADD COLUMN `document_id` INT(11) DEFAULT NULL COMMENT 'Document ID in documents table', +ADD INDEX `idx_document_id` (`document_id`); +#EndIf + +-- Add media_path column for local file storage +#IfMissingColumn oe_faxsms_queue media_path +ALTER TABLE `oe_faxsms_queue` +ADD COLUMN `media_path` VARCHAR(255) DEFAULT NULL COMMENT 'Local path to downloaded fax media'; +#EndIf + +-- Add site_id column for multi-site support +#IfMissingColumn oe_faxsms_queue site_id +ALTER TABLE `oe_faxsms_queue` +ADD COLUMN `site_id` VARCHAR(63) DEFAULT 'default' COMMENT 'OpenEMR site ID', +ADD INDEX `idx_site_id` (`site_id`); +#EndIf + +-- Add status column for better tracking +#IfMissingColumn oe_faxsms_queue status +ALTER TABLE `oe_faxsms_queue` +ADD COLUMN `status` VARCHAR(31) DEFAULT NULL COMMENT 'Fax status from vendor'; +#EndIf + +-- Add direction column if missing +#IfMissingColumn oe_faxsms_queue direction +ALTER TABLE `oe_faxsms_queue` +ADD COLUMN `direction` VARCHAR(15) DEFAULT 'inbound' COMMENT 'Fax direction: inbound or outbound'; +#EndIf diff --git a/interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php b/interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php index 4e5b0e7bb4e4..fdde128fa43c 100644 --- a/interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php +++ b/interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php @@ -202,7 +202,7 @@ private function render(): void * This is where we decide which Api to use. * * @param string $type - * @return EtherFaxActions|TwilioSMSClient|RCFaxClient|ClickatellSMSClient|EmailClient|void|null + * @return EtherFaxActions|TwilioSMSClient|RCFaxClient|ClickatellSMSClient|EmailClient|SignalWireClient|void|null */ static function getApiService(string $type) { @@ -225,7 +225,7 @@ static function getApiService(string $type) * @param string $type * @return void */ - static function setApiService($type): void + static function setApiService(string $type): void { try { if (empty($type)) { @@ -252,42 +252,29 @@ static function setModuleType($type): void static function getServiceInstance($type) { $s = self::getServiceType(); - if ($type == 'sms') { - switch ($s) { - case 0: - break; - case 1: - return new RCFaxClient(); - break; - case 2: - return new TwilioSMSClient(); - case 5: - return new ClickatellSMSClient(); - } - } elseif ($type == 'fax') { - switch ($s) { - case 0: - break; - case 1: - return new RCFaxClient(); - break; - case 3: - return new EtherFaxActions(); - } - } elseif ($type == 'email') { - switch ($s) { - case 0: - break; - case 4: - return new EmailClient(); - } - } elseif ($type == 'voice') { - switch ($s) { - case 0: - break; - case 6: - return new VoiceClient(); - } + + $factoryMap = [ + 'sms' => [ + 1 => fn() => new RCFaxClient(), + 2 => fn() => new TwilioSMSClient(), + 5 => fn() => new ClickatellSMSClient(), + ], + 'fax' => [ + 1 => fn() => new RCFaxClient(), + 3 => fn() => new EtherFaxActions(), + 6 => fn() => new SignalWireClient(), + ], + 'email' => [ + 4 => fn() => new EmailClient(), + ], + 'voice' => [ + 6 => fn() => new VoiceClient(), + ], + ]; + + $factory = $factoryMap[$type][$s] ?? null; + if (is_callable($factory)) { + return $factory(); } http_response_code(404); @@ -396,6 +383,13 @@ protected function saveSetup(array $setup = []): string $smsMessage = $this->getRequest('smsmessage'); $smsHours = $this->getRequest('smshours'); $jwt = $this->getRequest('jwt'); + // SignalWire specific fields + $spaceUrl = $this->getRequest('space_url'); + $projectId = $this->getRequest('project_id'); + $apiToken = $this->getRequest('api_token'); + $faxNumberRaw = $this->getRequest('fax_number'); + $faxNumber = !empty($faxNumberRaw) ? $this->formatPhoneForSave($faxNumberRaw) : ''; + $setup = [ 'username' => "$username", 'extension' => "$ext", @@ -412,6 +406,11 @@ protected function saveSetup(array $setup = []): string 'smsHours' => $smsHours, 'smsMessage' => $smsMessage, 'jwt' => $jwt ?? '', + // SignalWire credentials + 'space_url' => $spaceUrl ?? '', + 'project_id' => $projectId ?? '', + 'api_token' => $apiToken ?? '', + 'fax_number' => $faxNumber, ]; } @@ -565,7 +564,13 @@ protected function getSetup(): mixed 'smsHours' => "50", 'smsMessage' => "A courtesy reminder for ***NAME*** \r\nFor the appointment scheduled on: ***DATE*** At: ***STARTTIME*** Until: ***ENDTIME*** \r\nWith: ***PROVIDER*** Of: ***ORG***\r\nPlease call if unable to attend.", 'jwt' => '', + // SignalWire fields + 'space_url' => '', + 'project_id' => '', + 'api_token' => '', + 'fax_number' => '' ]; + return $credentials; } else { $credentials = $credentials['credentials']; } @@ -612,6 +617,7 @@ public function validEmail($email): bool */ public function mailEmail($email, $from_name, $body, $subject = '', $htmlContent = ''): string { + $status = 'Error: ' . xlt('Unknown error occurred'); try { $mail = new MyMailer(); $smtpEnabled = $mail::isConfigured(); @@ -634,7 +640,9 @@ public function mailEmail($email, $from_name, $body, $subject = '', $htmlContent $mail->MsgHTML(text($htmlContent)); $mail->IsHTML(true); } - $status = $mail->Send() ? xlt("Email successfully sent.") : xlt("Error: Email failed") . text($mail->ErrorInfo); + if ($mail->Send()) { + $status = $mail->Send() ? xlt("Email successfully sent.") : xlt("Error: Email failed") . text($mail->ErrorInfo); + } } catch (\Exception $e) { $message = $e->getMessage(); $status = 'Error: ' . $message; diff --git a/interface/modules/custom_modules/oe-module-faxsms/src/Controller/FaxDocumentService.php b/interface/modules/custom_modules/oe-module-faxsms/src/Controller/FaxDocumentService.php new file mode 100644 index 000000000000..4964e7f8c13b --- /dev/null +++ b/interface/modules/custom_modules/oe-module-faxsms/src/Controller/FaxDocumentService.php @@ -0,0 +1,365 @@ +siteId = $siteId ?? ($_SESSION['site_id'] ?? 'default'); + $this->sitePath = $globals->get('OE_SITE_DIR') ?? ($globals->get('OE_SITES_BASE') . '/' . $this->siteId); + $this->receivedFaxesPath = $this->sitePath . '/documents/received_faxes'; + + // Ensure received faxes directory exists + if (!file_exists($this->receivedFaxesPath)) { + mkdir($this->receivedFaxesPath, 0770, true); + } + + $unassignedPath = $this->receivedFaxesPath . '/unassigned'; + if (!file_exists($unassignedPath)) { + mkdir($unassignedPath, 0770, true); + } + } + + /** + * Store fax document in OpenEMR document system + * + * @param string $faxSid SignalWire Fax SID + * @param string $mediaContent Binary content of fax media + * @param string $fromNumber Sender's fax number + * @param int $patientId Patient ID (0 for unassigned) + * @param string $mimeType MIME type of document + * @return array Result with document_id and media_path + * @throws FaxDocumentException + */ + public function storeFaxDocument( + string $faxSid, + string $mediaContent, + string $fromNumber, + int $patientId = 0, + string $mimeType = 'application/pdf' + ): array { + try { + $timestamp = date('YmdHis'); + $extension = FileUtils::getExtensionFromMimeType($mimeType); + $filename = "fax_{$faxSid}_{$timestamp}.{$extension}"; + + // Determine storage location + if ($patientId > 0) { + // Get FAX category ID + $categoryResult = QueryUtils::querySingleRow("SELECT id FROM categories WHERE name = 'FAX'"); + $categoryId = $categoryResult['id'] ?? 1; + + $formattedFrom = $this->formatPhoneDisplay($fromNumber); + $owner = $_SESSION['authUserID'] ?? 0; + + // Create and save document using OpenEMR's standard method + $document = new Document(); + $error = $document->createDocument( + $patientId, + $categoryId, + $filename, + $mimeType, + $mediaContent, + '', // higher_level_path + 1, // path_depth + $owner + ); + + if (!empty($error)) { + throw new FaxDocumentException("Failed to create document: {$error}"); + } + + // Set document name + $document->set_name("Fax from {$formattedFrom} - {$timestamp}"); + $document->persist(); + + $documentId = $document->get_id(); + $mediaPath = $document->get_url(); + + error_log("FaxDocumentService: Stored fax {$faxSid} as document {$documentId} for patient {$patientId}"); + + return [ + 'success' => true, + 'document_id' => $documentId, + 'media_path' => $mediaPath, + 'patient_id' => $patientId + ]; + } else { + // Store in unassigned directory + $mediaPath = $this->receivedFaxesPath . '/unassigned/' . $filename; + file_put_contents($mediaPath, $mediaContent); + + error_log("FaxDocumentService: Stored unassigned fax {$faxSid} at {$mediaPath}"); + + return [ + 'success' => true, + 'document_id' => null, + 'media_path' => $mediaPath, + 'patient_id' => 0 + ]; + } + } catch (FaxDocumentException $e) { + error_log("FaxDocumentService: Error storing fax document: " . $e->getMessage()); + throw $e; + } + } + + /** + * Assign unassigned fax to a patient + * + * @param string $faxSid Fax SID + * @param int $patientId Patient ID to assign to + * @return array Result with success status + * @throws FaxDocumentException + * @throws FaxNotFoundException + */ + public function assignFaxToPatient(string $faxSid, int $patientId): array + { + try { + // Get fax from queue + $fax = QueryUtils::querySingleRow( + "SELECT * FROM oe_faxsms_queue WHERE job_id = ? AND site_id = ?", + [$faxSid, $this->siteId] + ); + + if (empty($fax)) { + throw new FaxNotFoundException("Fax not found: {$faxSid}"); + } + + if (!empty($fax['patient_id'])) { + throw new FaxDocumentException("Fax already assigned to patient " . $fax['patient_id']); + } + + // Read the file from unassigned directory + $mediaPath = $fax['media_path']; + if (empty($mediaPath) || !file_exists($mediaPath)) { + throw new FaxDocumentException("Fax media file not found: {$mediaPath}"); + } + + $mediaContent = file_get_contents($mediaPath); + $details = json_decode($fax['details_json'] ?? '{}', true); + $fromNumber = $details['from'] ?? $fax['calling_number'] ?? 'Unknown'; + + // Determine mime type from file + $finfo = finfo_open(FILEINFO_MIME_TYPE); + $mimeType = finfo_file($finfo, $mediaPath); + finfo_close($finfo); + + // Store as patient document + $result = $this->storeFaxDocument($faxSid, $mediaContent, $fromNumber, $patientId, $mimeType); + + // Update queue record + QueryUtils::sqlStatementThrowException( + "UPDATE oe_faxsms_queue + SET patient_id = ?, document_id = ?, media_path = ? + WHERE job_id = ? AND site_id = ?", + [$patientId, $result['document_id'], $result['media_path'], $faxSid, $this->siteId] + ); + + // Delete old unassigned file + if (file_exists($mediaPath)) { + unlink($mediaPath); + } + + error_log("FaxDocumentService: Assigned fax {$faxSid} to patient {$patientId}"); + + return [ + 'success' => true, + 'message' => 'Fax successfully assigned to patient', + 'document_id' => $result['document_id'] + ]; + } catch (FaxDocumentException | FaxNotFoundException $e) { + error_log("FaxDocumentService: Error assigning fax to patient: " . $e->getMessage()); + throw $e; + } + } + + /** + * Get list of unassigned faxes + * + * @return array List of unassigned faxes + */ + public function getUnassignedFaxes(): array + { + $sql = "SELECT * FROM oe_faxsms_queue + WHERE site_id = ? + AND (patient_id IS NULL OR patient_id = 0) + AND direction = 'inbound' + AND deleted = 0 + ORDER BY date DESC"; + + $rows = QueryUtils::fetchRecords($sql, [$this->siteId]); + $faxes = []; + + foreach ($rows as $row) { + $details = json_decode($row['details_json'] ?? '{}', true); + $faxes[] = [ + 'id' => $row['id'], + 'job_id' => $row['job_id'], + 'from' => $row['calling_number'] ?? $details['from'] ?? 'Unknown', + 'to' => $row['called_number'] ?? $details['to'] ?? 'Unknown', + 'date' => $row['date'], + 'status' => $row['status'] ?? $details['status'] ?? 'unknown', + 'num_pages' => $details['num_pages'] ?? 0, + 'media_path' => $row['media_path'], + 'details' => $details + ]; + } + + return $faxes; + } + + /** + * Get fax document details + * + * @param string $faxSid Fax SID + * @return array|null Fax details or null if not found + */ + public function getFaxDocument(string $faxSid): ?array + { + $fax = QueryUtils::querySingleRow( + "SELECT * FROM oe_faxsms_queue WHERE job_id = ? AND site_id = ?", + [$faxSid, $this->siteId] + ); + + if (empty($fax)) { + return null; + } + + $details = json_decode($fax['details_json'] ?? '{}', true); + + return [ + 'id' => $fax['id'], + 'job_id' => $fax['job_id'], + 'from' => $fax['calling_number'] ?? $details['from'] ?? 'Unknown', + 'to' => $fax['called_number'] ?? $details['to'] ?? 'Unknown', + 'date' => $fax['date'], + 'status' => $fax['status'] ?? $details['status'] ?? 'unknown', + 'patient_id' => $fax['patient_id'], + 'document_id' => $fax['document_id'], + 'media_path' => $fax['media_path'], + 'direction' => $fax['direction'] ?? 'inbound', + 'details' => $details + ]; + } + + /** + * Delete fax document + * + * @param string $faxSid Fax SID + * @param bool $deleteFile Whether to delete the physical file + * @return bool Success status + */ + public function deleteFaxDocument(string $faxSid, bool $deleteFile = false): bool + { + try { + $fax = $this->getFaxDocument($faxSid); + + if (empty($fax)) { + return false; + } + + // Mark as deleted in queue + QueryUtils::sqlStatementThrowException( + "UPDATE oe_faxsms_queue SET deleted = 1 WHERE job_id = ? AND site_id = ?", + [$faxSid, $this->siteId] + ); + + // Optionally delete physical file + if ($deleteFile && !empty($fax['media_path']) && file_exists($fax['media_path'])) { + unlink($fax['media_path']); + } + + error_log("FaxDocumentService: Deleted fax {$faxSid}"); + return true; + } catch (FaxDocumentException $e) { + error_log("FaxDocumentService: Error deleting fax: " . $e->getMessage()); + return false; + } + } + + + /** + * Format phone number for display + * + * @param string $phone + * @return string + */ + private function formatPhoneDisplay(string $phone): string + { + $cleaned = preg_replace('/[^0-9]/', '', $phone); + + if (strlen((string) $cleaned) === 11 && $cleaned[0] === '1') { + $cleaned = substr((string) $cleaned, 1); + } + + if (strlen((string) $cleaned) === 10) { + return sprintf("(%s) %s-%s", substr((string) $cleaned, 0, 3), substr((string) $cleaned, 3, 3), substr((string) $cleaned, 6)); + } + + return $phone; + } + + /** + * Attempt to auto-match fax to patient by phone number + * + * @param string $fromNumber Sender's phone number + * @return int Patient ID if found, 0 otherwise + */ + public function findPatientByPhone(string $fromNumber): int + { + $cleaned = preg_replace('/[^0-9]/', '', $fromNumber); + + if (strlen((string) $cleaned) === 11 && $cleaned[0] === '1') { + $cleaned = substr((string) $cleaned, 1); + } + + // Try exact match first + $patterns = [ + $cleaned, + '+1' . $cleaned, + '1' . $cleaned, + substr((string) $cleaned, 0, 3) . '-' . substr((string) $cleaned, 3, 3) . '-' . substr((string) $cleaned, 6), + '(' . substr((string) $cleaned, 0, 3) . ') ' . substr((string) $cleaned, 3, 3) . '-' . substr((string) $cleaned, 6) + ]; + + foreach ($patterns as $pattern) { + $result = QueryUtils::querySingleRow( + "SELECT pid FROM patient_data + WHERE (phone_cell LIKE ? OR phone_home LIKE ? OR phone_biz LIKE ?) + LIMIT 1", + ["%{$pattern}%", "%{$pattern}%", "%{$pattern}%"] + ); + + if (!empty($result['pid'])) { + return (int)$result['pid']; + } + } + + return 0; + } +} diff --git a/interface/modules/custom_modules/oe-module-faxsms/src/Controller/SignalWireClient.php b/interface/modules/custom_modules/oe-module-faxsms/src/Controller/SignalWireClient.php new file mode 100644 index 000000000000..f43d5577cb1d --- /dev/null +++ b/interface/modules/custom_modules/oe-module-faxsms/src/Controller/SignalWireClient.php @@ -0,0 +1,936 @@ +crypto = new CryptoGen(); + $this->baseDir = $globals->get('temporary_files_dir'); + $this->uriDir = $globals->get('OE_SITE_WEBROOT'); + + try { + $this->credentials = $this->getCredentials(); + + // Initialize SignalWire client only if credentials are complete + if (!empty($this->credentials['space_url']) && + !empty($this->credentials['project_id']) && + !empty($this->credentials['api_token'])) { + $this->client = new Client( + $this->credentials['project_id'], + $this->credentials['api_token'], + ['signalwireSpaceUrl' => $this->credentials['space_url']] + ); + } + + $this->portalUrl = "https://" . ($this->credentials['space_url'] ?? 'example.signalwire.com'); + } catch (Exception $e) { + error_log('SignalWire initialization error: ' . $e->getMessage()); + // Continue anyway to allow setup + } + + // Call parent constructor last - it handles routing/dispatch and may exit + parent::__construct(); + } + + /** + * Get and decrypt credentials + * + * @return mixed + */ + public function getCredentials(): mixed + { + $credentials = AppDispatch::getSetup(); + + $this->spaceUrl = $credentials['space_url'] ?? ''; + $this->projectId = $credentials['project_id'] ?? ''; + $this->apiToken = $credentials['api_token'] ?? ''; + // Ensure 'from' fax number is always in E.164 format + $this->faxNumber = $this->formatPhone($credentials['fax_number'] ?? ''); + $this->serverUrl = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://" . $_SERVER['HTTP_HOST']; + $this->uriDir = $this->serverUrl . $this->uriDir; + + error_log("SignalWireClient.getCredentials(): DEBUG - faxNumber after E.164 formatting: " . ($this->faxNumber ?: 'EMPTY')); + + return $credentials; + } + + /** + * Authenticate and verify ACL + * + * @param array $acl + * @return int|bool + */ + public function authenticate($acl = ['patients', 'docs']): int|bool + { + if (empty($this->credentials)) { + $this->credentials = $this->getCredentials(); + } + + if (empty($this->credentials['project_id']) || empty($this->credentials['api_token'])) { + return 0; + } + + return $this->verifyAcl($acl[0], $acl[1]); + } + + /** + * Send a fax via SignalWire + * + * @return string + * @throws \PHPMailer\PHPMailer\Exception + */ + public function sendFax(): string + { + if (!$this->authenticate()) { + return $this->authErrorDefault; + } + + if (empty($this->client)) { + return json_encode([ + 'success' => false, + 'error' => xlt('SignalWire client not initialized. Please configure credentials.') + ]); + } + + // Get request parameters - initialize all to avoid PHPStan warnings + $isContent = $this->getRequest('isContent'); + $fileParam = $this->getRequest('file'); + $file = !empty($fileParam) ? $fileParam : ''; + $docId = $this->getRequest('docid'); + $phoneParam = $this->getRequest('phone'); + $phone = !empty($phoneParam) ? $this->formatPhone($phoneParam) : ''; + $recipientName = $this->getRequest('name') . ' ' . $this->getRequest('surname'); + $recipientName = trim($recipientName) ?: 'Unknown'; // Default if empty + $isDocumentsParam = $this->getRequest('isDocuments'); + $isDocuments = !empty($isDocumentsParam) ? (int)$isDocumentsParam : 0; + $email = $this->getRequest('email'); + $hasEmail = $this->validEmail($email); + $globals = OEGlobalsBag::getInstance(); + $smtpEnabled = !empty($globals->get('SMTP_PASS') ?? null) && !empty($globals->get('SMTP_USER') ?? null); + $user = $this::getLoggedInUser(); + + // DEBUG: Log parameters received in sendFax + error_log("SignalWireClient.sendFax(): DEBUG - Received file path: " . $file); + error_log("SignalWireClient.sendFax(): DEBUG - isContent: " . ($isContent ?? 'EMPTY')); + error_log("SignalWireClient.sendFax(): DEBUG - isDocuments: " . $isDocuments); + error_log("SignalWireClient.sendFax(): DEBUG - Phone: " . $phone); + error_log("SignalWireClient.sendFax(): DEBUG - File exists: " . (!empty($file) && file_exists($file) ? 'YES' : 'NO')); + if (!empty($file) && file_exists($file)) { + error_log("SignalWireClient.sendFax(): DEBUG - File size: " . filesize($file) . " bytes"); + } + + // Handle file path + if (empty($isContent) && !empty($file)) { + if (str_starts_with((string) $file, 'file://')) { + $file = substr((string) $file, 7); + } + $realPath = realpath($file); + if ($realPath !== false) { + $file = str_replace("\\", "/", $realPath); + } else { + return xlt('Error: No content SignalWireClient'); + } + } + + // Handle document retrieval + if ($isDocuments) { + $file = (new Document($docId))->get_data(); + } + + // Send email if requested + if ($hasEmail && $smtpEnabled) { + self::emailDocument($email, '', $file, $user); + } + + // Validate phone number + if (empty($phone)) { + return xlt('Error: Invalid phone number'); + } + + // Upload file to accessible URL + $mediaUrl = $this->uploadFileForFax($file, $isDocuments); + if (empty($mediaUrl)) { + return xlt('Error: Failed to prepare document for faxing'); + } + + try { + // Send fax via SignalWire REST API + // The SDK expects: create($options) where options is an array with 'to', 'from', 'mediaUrl' + error_log("SignalWireClient.sendFax(): DEBUG - About to call SignalWire fax create"); + error_log("SignalWireClient.sendFax(): DEBUG - to={$phone}, from={$this->faxNumber}"); + error_log("SignalWireClient.sendFax(): DEBUG - mediaUrl={$mediaUrl}"); + + $fax = $this->client->fax->v1->faxes->create([ + 'to' => $phone, + 'from' => $this->faxNumber, + 'mediaUrl' => $mediaUrl + ]); + + // Get logged-in user's username + $username = $user['username'] ?? $_SESSION['authUser'] ?? 'System'; + + // Insert into queue + $this->insertFaxQueue([ + 'job_id' => $fax->sid, + 'calling_number' => $username, // Store username who sent the fax + 'called_number' => $recipientName, // Store recipient name + 'phone' => $phone, // Store phone separately for reference + 'status' => $fax->status, + 'direction' => 'outbound' + ]); + + return json_encode([ + 'success' => true, + 'message' => xlt('Fax queued successfully'), + 'fax_sid' => $fax->sid, + 'status' => $fax->status + ]); + } catch (Exception $e) { + error_log('SignalWire Fax Error: ' . $e->getMessage()); + return json_encode([ + 'success' => false, + 'error' => xlt('Error sending fax') . ': ' . $e->getMessage() + ]); + } + } + + /** + * Upload file to make it accessible for SignalWire + * + * @param string $file + * @param bool $isDocuments + * @return string|null + */ + private function uploadFileForFax(string $file, bool $isDocuments = false): ?string + { + try { + // DEBUG: Log before upload + error_log("SignalWireClient.uploadFileForFax(): DEBUG - baseDir: " . ($this->baseDir ?? 'EMPTY')); + error_log("SignalWireClient.uploadFileForFax(): DEBUG - File parameter: " . $file); + error_log("SignalWireClient.uploadFileForFax(): DEBUG - isDocuments: " . ($isDocuments ? 'YES' : 'NO')); + + // Use public web root for uploads so SignalWire can access via HTTP + // Store in web root's public area accessible to external IPs + // Use GLOBALS['fileroot'] which is properly set by globals.php + $globals = OEGlobalsBag::getInstance(); + $webRoot = $globals->get('fileroot') ?? dirname(__DIR__, 5); + + // Get site_id with fallback to 'default' + $siteId = $_SESSION['site_id'] ?? $globals->get('OE_SITE_NAME') ?? 'default'; + error_log("SignalWireClient.uploadFileForFax(): DEBUG - Using siteId: " . $siteId); + error_log("SignalWireClient.uploadFileForFax(): DEBUG - Using fileroot: " . $webRoot); + + $relativeUploadDir = 'sites/' . $siteId . '/fax'; + $uploadDir = $webRoot . '/' . $relativeUploadDir; + error_log("SignalWireClient.uploadFileForFax(): DEBUG - Web root: " . $webRoot); + error_log("SignalWireClient.uploadFileForFax(): DEBUG - Upload dir: " . $uploadDir); + + if (!file_exists($uploadDir)) { + if (!mkdir($uploadDir, 0777, true)) { + error_log("SignalWireClient.uploadFileForFax(): ERROR - Failed to create directory: " . $uploadDir); + return null; + } + error_log("SignalWireClient.uploadFileForFax(): DEBUG - Created upload directory"); + } + + $filename = uniqid('fax_') . '_' . basename($file); + $uploadPath = $uploadDir . '/' . $filename; + error_log("SignalWireClient.uploadFileForFax(): DEBUG - Upload path: " . $uploadPath); + error_log("SignalWireClient.uploadFileForFax(): DEBUG - Filename: " . $filename); + + if ($isDocuments) { + file_put_contents($uploadPath, $file); + error_log("SignalWireClient.uploadFileForFax(): DEBUG - Wrote document content to file"); + } else { + if (!file_exists($file)) { + error_log("SignalWireClient.uploadFileForFax(): ERROR - Source file does not exist: " . $file); + return null; + } + copy($file, $uploadPath); + error_log("SignalWireClient.uploadFileForFax(): DEBUG - Copied file from: " . $file); + } + + // Return publicly accessible URL + // SignalWire accesses this from external IP, so it must be web-accessible + $mediaUrl = $this->serverUrl . '/' . $relativeUploadDir . '/' . $filename; + error_log("SignalWireClient.uploadFileForFax(): DEBUG - Generated media URL: " . $mediaUrl); + return $mediaUrl; + } catch (Exception $e) { + error_log('SignalWireClient.uploadFileForFax(): ERROR - ' . $e->getMessage()); + error_log('SignalWireClient.uploadFileForFax(): TRACE - ' . $e->getTraceAsString()); + return null; + } + } + + /** + * Insert fax into queue with all details + * + * @param array $faxData + * @return void + */ + private function insertFaxQueue(array $faxData): void + { + $uid = $_SESSION['authUserID'] ?? 0; + $site_id = $_SESSION['site_id'] ?? 'default'; + $direction = $faxData['direction'] ?? 'outbound'; + $status = $faxData['status'] ?? 'queued'; + + $sql = "INSERT INTO oe_faxsms_queue + (uid, job_id, calling_number, called_number, details_json, date, direction, status, site_id) + VALUES (?, ?, ?, ?, ?, NOW(), ?, ?, ?)"; + + QueryUtils::sqlStatementThrowException($sql, [ + $uid, + $faxData['job_id'] ?? '', + $faxData['calling_number'] ?? '', + $faxData['called_number'] ?? '', + json_encode($faxData), + $direction, + $status, + $site_id + ]); + } + + /** + * Fetch fax queue + * + * @param string $dateFrom + * @param string $dateTo + * @param bool $received + * @return array + */ + private function fetchFaxQueue(string $dateFrom, string $dateTo, bool $received = true): array + { + $uid = $_SESSION['authUserID'] ?? 0; + $site_id = $_SESSION['site_id'] ?? 'default'; + + // For inbound faxes, show to all users in the site + // For outbound faxes, show only to the user who sent them + $sql = "SELECT * FROM oe_faxsms_queue + WHERE site_id = ? + AND date BETWEEN ? AND ? + AND (direction = 'inbound' OR uid = ?) + ORDER BY date DESC"; + + $rows = QueryUtils::fetchRecords($sql, [$site_id, $dateFrom, $dateTo, $uid]); + $faxes = []; + + foreach ($rows as $row) { + $faxes[] = (object)$row; + } + + return $faxes; + } + + /** + * Fetch reminder count + * + * @return string + */ + public function fetchReminderCount(): string + { + return json_encode(['count' => $this->fetchQueueCount()]); + } + + /** + * Get fax queue count + * + * @return int + */ + private function fetchQueueCount(): int + { + $uid = $_SESSION['authUserID'] ?? 0; + $sql = "SELECT COUNT(*) as count FROM oe_faxsms_queue WHERE uid = ? AND deleted = 0"; + $result = QueryUtils::querySingleRow($sql, [$uid]); + return (int)($result['count'] ?? 0); + } + + /** + * Send SMS (not implemented for fax-only service) + * + * @return string + */ + public function sendSMS(): string + { + return json_encode(['error' => xlt('SMS not implemented for SignalWire Fax')]); + } + + /** + * Send Email (not implemented) + * + * @return mixed + */ + public function sendEmail(): mixed + { + return xlt('Email not implemented for SignalWire Fax'); + } + + /** + * Email a document + * + * @param string $email + * @param string $body + * @param string $file + * @param array $user + * @return string + * @throws \PHPMailer\PHPMailer\Exception + */ + public static function emailDocument(string $email, string $body, string $file, array $user = []): string + { + $globals = OEGlobalsBag::getInstance(); + $from_name = ($user['fname'] ?? '') . ' ' . ($user['lname'] ?? ''); + $desc = xlt("Comment") . ":\n" . text($body) . "\n" . xlt("This email has an attached fax document."); + $mail = new MyMailer(); + $from_name = text($from_name); + $from = $globals->get("practice_return_email_path"); + $mail->AddReplyTo($from, $from_name); + $mail->SetFrom($from, $from); + $mail->AddAddress($email, $email); + $mail->Subject = xlt("Forwarded Fax Document"); + $mail->Body = $desc; + $mail->AddAttachment($file); + + return $mail->Send() ? xlt("Email successfully sent.") : xlt("Error: Email failed") . text($mail->ErrorInfo); + } + + /** + * Format phone number to E.164 + * + * @param string $number + * @return string + */ + public function formatPhone(string $number): string + { + $n = preg_replace('/[^0-9]/', '', $number); + if (stripos((string) $n, '1') === 0) { + $n = '+' . $n; + } elseif (!empty($n)) { + $n = '+1' . $n; + } + + return $this->validatePhone($n) ? $n : ''; + } + + /** + * Validate phone number format + * + * @param string $n + * @return bool + */ + public function validatePhone(string $n): bool + { + return preg_match("/^\+[1-9]\d{10,14}$/", $n); + } + + /** + * View fax PDF file inline in browser + * + * @return void + */ + public function viewFaxPdf(): void + { + if (!$this->authenticate()) { + http_response_code(403); + die(xlt('Not authorized')); + } + + $queueId = $this->getRequest('id'); + if (empty($queueId)) { + http_response_code(400); + die(xlt('Missing fax ID')); + } + + // Fetch fax from queue + $site_id = $_SESSION['site_id'] ?? 'default'; + $fax = QueryUtils::querySingleRow( + "SELECT * FROM oe_faxsms_queue WHERE id = ? AND site_id = ?", + [$queueId, $site_id] + ); + + if (empty($fax)) { + http_response_code(404); + die(xlt('Fax not found')); + } + + $mediaPath = $fax['media_path'] ?? ''; + if (empty($mediaPath) || !file_exists($mediaPath)) { + http_response_code(404); + die(xlt('Fax file not found')); + } + + // Send file for inline viewing + $filename = basename((string) $mediaPath); + header('Content-Type: application/pdf'); + header('Content-Disposition: inline; filename="' . $filename . '"'); + header('Content-Length: ' . filesize($mediaPath)); + header('Cache-Control: no-cache, must-revalidate'); + header('Pragma: public'); + readfile($mediaPath); + exit; + } + + /** + * Download fax PDF file + * + * @return void + */ + public function download(): void + { + if (!$this->authenticate()) { + http_response_code(403); + die(xlt('Not authorized')); + } + + $queueId = $this->getRequest('id'); + if (empty($queueId)) { + http_response_code(400); + die(xlt('Missing fax ID')); + } + + // Fetch fax from queue + $site_id = $_SESSION['site_id'] ?? 'default'; + $fax = QueryUtils::querySingleRow( + "SELECT * FROM oe_faxsms_queue WHERE id = ? AND site_id = ?", + [$queueId, $site_id] + ); + + if (empty($fax)) { + http_response_code(404); + die(xlt('Fax not found')); + } + + $mediaPath = $fax['media_path'] ?? ''; + if (empty($mediaPath) || !file_exists($mediaPath)) { + http_response_code(404); + die(xlt('Fax file not found')); + } + + // Send file as download + $filename = basename((string) $mediaPath); + header('Content-Type: application/pdf'); + header('Content-Disposition: attachment; filename="' . $filename . '"'); + header('Content-Length: ' . filesize($mediaPath)); + header('Cache-Control: no-cache, must-revalidate'); + header('Pragma: public'); + readfile($mediaPath); + exit; + } + + /** + * Assign fax to patient + * + * @return string + */ + public function assignFax(): string + { + if (!$this->authenticate()) { + return json_encode(['error' => xlt('Not authorized')]); + } + + $queueId = $this->getRequest('fax_id'); // This is the queue table ID, not job_id + $patientId = $this->getRequest('patient_id'); + + if (empty($queueId) || empty($patientId)) { + return json_encode(['error' => xlt('Missing fax ID or patient ID')]); + } + + try { + // Look up the fax from queue to get job_id (SID) + $site_id = $_SESSION['site_id'] ?? 'default'; + $fax = QueryUtils::querySingleRow( + "SELECT job_id, patient_id FROM oe_faxsms_queue WHERE id = ? AND site_id = ?", + [$queueId, $site_id] + ); + + if (empty($fax)) { + return json_encode(['error' => xlt('Fax not found')]); + } + + if (!empty($fax['patient_id'])) { + return json_encode(['error' => xlt('Fax already assigned to patient ') . $fax['patient_id']]); + } + + $jobId = $fax['job_id']; // This is the SignalWire SID + + // Load the FaxDocumentService + require_once(__DIR__ . '/FaxDocumentService.php'); + $faxService = new \OpenEMR\Modules\FaxSMS\Controller\FaxDocumentService(); + + // Use the service to assign the fax (pass job_id, not queue id) + $result = $faxService->assignFaxToPatient($jobId, $patientId); + + if ($result['success']) { + return json_encode(['success' => true, 'document_id' => $result['document_id']]); + } else { + return json_encode(['error' => $result['message']]); + } + } catch (Exception $e) { + error_log("SignalWireClient.assignFax(): ERROR - " . $e->getMessage()); + return json_encode(['error' => xlt('Failed to assign fax: ') . $e->getMessage()]); + } + } + + /** + * Retrieve faxes from SignalWire API and populate local queue + * + * @return string + */ + public function getPending(): string + { + if (!$this->authenticate()) { + return $this->authErrorDefault; + } + + $dateFrom = $this->getRequest('datefrom'); + $dateTo = $this->getRequest('dateto'); + + try { + // Fetch faxes from SignalWire API + $dateFromISO = date('c', strtotime($dateFrom . 'T00:00:01')); + $dateToISO = date('c', strtotime($dateTo . 'T23:59:59')); + + error_log("SignalWireClient.getPending(): DEBUG - Fetching faxes from SignalWire"); + error_log("SignalWireClient.getPending(): DEBUG - dateFrom={$dateFromISO}, dateTo={$dateToISO}"); + + // Fetch faxes from SignalWire API with date filtering + $faxes = $this->client->fax->v1->faxes->read( + [ + 'dateCreatedAfter' => $dateFromISO, + 'dateCreatedOnOrBefore' => $dateToISO + ], + 100 // limit + ); + + error_log("SignalWireClient.getPending(): DEBUG - Found " . count($faxes) . " faxes from SignalWire"); + + // Insert/update faxes in local queue + foreach ($faxes as $fax) { + $this->upsertFaxFromSignalWire($fax); + } + } catch (Exception $e) { + error_log("SignalWireClient.getPending(): ERROR - " . $e->getMessage()); + } + + // Fetch from local queue for display + $dateFromDB = date("Y-m-d H:i:s", strtotime($dateFrom . 'T00:00:01')); + $dateToDB = date("Y-m-d H:i:s", strtotime($dateTo . 'T23:59:59')); + $faxStore = $this->fetchFaxQueue($dateFromDB, $dateToDB, false); + + // Initialize response array with keys 0, 1, 2 like other controllers + $responseMsg = [0 => '', 1 => '', 2 => xlt('Not Implemented')]; + + foreach ($faxStore as $faxDetails) { + $details = json_decode($faxDetails->details_json ?? '{}', true); + $formattedDate = date('M j, Y g:i:sa T', strtotime((string) $faxDetails->date)); + $direction = $faxDetails->direction ?? ($details['direction'] ?? 'inbound'); + $status = $faxDetails->status ?? ($details['status'] ?? 'unknown'); + $jobId = $faxDetails->job_id; // FAX SID from SignalWire + $recipientName = $faxDetails->called_number ?? ''; // Recipient name or phone + $senderUsername = $faxDetails->calling_number ?? ''; // Sender phone + $numPages = $details['numPages'] ?? 0; + $patientId = $faxDetails->patient_id ?? 0; + $documentId = $faxDetails->document_id ?? 0; + $mediaPath = $faxDetails->media_path ?? ''; + $queueId = $faxDetails->id ?? 0; + + // Build message column with view, download links and patient info + $messageCol = ''; + + // Only show View/Download for inbound (received) faxes + if ($direction === 'inbound') { + // If assigned to patient, link to patient document + if ($patientId > 0 && $documentId > 0) { + $globals = OEGlobalsBag::getInstance(); + $viewLink = $globals->get('webroot') . "/controller.php?document&retrieve&patient_id=" . + urlencode((string) $patientId) . "&document_id=" . urlencode((string) $documentId) . + "&as_file=false&original_file=true"; + $messageCol .= "" . + " " . xlt('View') . " "; + if ($numPages > 0) { + $messageCol .= "(" . text($numPages) . " " . xlt('pages') . ") "; + } + } elseif (!empty($mediaPath) && file_exists($mediaPath)) { + // Unassigned fax - use queue view/download links + $filename = basename((string) $mediaPath); + $viewLink = "./viewFaxPdf?type=fax&site=" . urlencode($_SESSION['site_id'] ?? 'default') . "&id=" . urlencode($queueId); + $downloadLink = "./download?type=fax&site=" . urlencode($_SESSION['site_id'] ?? 'default') . "&id=" . urlencode($queueId); + + $messageCol .= "" . + " " . xlt('View') . " "; + $messageCol .= "" . + " " . xlt('Download') . " "; + if ($numPages > 0) { + $messageCol .= "(" . text($numPages) . " " . xlt('pages') . ") "; + } + } + } else { + // Outbound faxes - just show page count if available + if ($numPages > 0) { + $messageCol .= "(" . text($numPages) . " " . xlt('pages') . ")"; + } + } + + if ($direction === 'inbound') { + // Show patient assignment status + if ($patientId > 0) { + // Get patient name + $patientRow = QueryUtils::querySingleRow("SELECT fname, lname FROM patient_data WHERE pid = ?", [$patientId]); + if ($patientRow) { + $patientName = text($patientRow['fname'] . ' ' . $patientRow['lname']); + $messageCol .= "" . xlt('Assigned to') . ": {$patientName}"; + } + } else { + $messageCol .= "" . xlt('Unassigned') . " "; + // Add assign button + $messageCol .= ""; + } + } + + // Build row with correct column mapping: + // Start Time | Message (download + patient) | From | To | Result | Reply + $faxRow = " + " . text($formattedDate) . " + " . $messageCol . " + " . text($senderUsername) . " + " . text($recipientName) . " + " . text($status) . " + "; + + // Index 0 = received (inbound), Index 1 = sent (outbound) + $responseMsg[$direction === 'outbound' ? 1 : 0] .= $faxRow; + } + + if (empty($responseMsg[0])) { + $responseMsg[0] = xlt("Currently inbox is empty."); + } + if (empty($responseMsg[1])) { + $responseMsg[1] = xlt("No sent faxes found."); + } + + echo json_encode($responseMsg); + exit(); + } + + /** + * Insert or update a fax from SignalWire into local queue + * Fetches current status from SignalWire API for accurate disposition + * + * @param mixed $fax Fax object from SignalWire API + * @return void + */ + private function upsertFaxFromSignalWire($fax): void + { + try { + $uid = $_SESSION['authUserID'] ?? 0; + $jobId = $fax->sid; + $direction = $fax->direction ?? 'unknown'; + $status = $fax->status ?? 'unknown'; + $from = $fax->from ?? ''; + $to = $fax->to ?? ''; + $numPages = $fax->numPages ?? 0; + $duration = $fax->duration ?? 0; + $dateCreated = $fax->dateCreated ? $fax->dateCreated->format('Y-m-d H:i:s') : date('Y-m-d H:i:s'); + + // Fetch fresh status from SignalWire API for current fax details + try { + $freshFax = $this->client->fax->v1->faxes->getContext($jobId)->fetch(); + $status = $freshFax->status ?? $status; + $numPages = $freshFax->numPages ?? $numPages; + $duration = $freshFax->duration ?? $duration; + error_log("SignalWireClient.upsertFaxFromSignalWire(): DEBUG - Fetched fresh status from API: {$status}"); + } catch (Exception $e) { + error_log("SignalWireClient.upsertFaxFromSignalWire(): WARNING - Could not fetch fresh status: " . $e->getMessage()); + } + + $faxData = [ + 'sid' => $jobId, + 'from' => $from, + 'to' => $to, + 'phone' => $to, // Store phone number separately + 'status' => $status, + 'direction' => $direction, + 'numPages' => $numPages, + 'duration' => $duration, + 'dateCreated' => $dateCreated + ]; + + error_log("SignalWireClient.upsertFaxFromSignalWire(): DEBUG - Upserting fax sid={$jobId}, from={$from}, to={$to}, status={$status}, direction={$direction}"); + + // Download fax media if available + $mediaPath = $this->downloadFaxMedia($fax); + if ($mediaPath) { + $faxData['media_path'] = $mediaPath; + } + + // Check if fax already exists in queue + $existing = QueryUtils::querySingleRow("SELECT id, called_number, media_path FROM oe_faxsms_queue WHERE job_id = ?", [$jobId]); + + if (!empty($existing)) { + // Update existing fax with fresh status and media path + $sql = "UPDATE oe_faxsms_queue + SET details_json = ?, + direction = ?, + status = ?, + media_path = ? + WHERE job_id = ?"; + QueryUtils::sqlStatementThrowException($sql, [json_encode($faxData), $direction, $status, $mediaPath ?? null, $jobId]); + error_log("SignalWireClient.upsertFaxFromSignalWire(): DEBUG - Updated fax {$jobId} with fresh status"); + } else { + // Insert new fax from API fetch (these are received/already-sent faxes) + $sql = "INSERT INTO oe_faxsms_queue + (uid, job_id, calling_number, called_number, details_json, date, direction, status, site_id, media_path) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; + $site_id = $_SESSION['site_id'] ?? 'default'; + QueryUtils::sqlStatementThrowException($sql, [$uid, $jobId, $from, $to, json_encode($faxData), $dateCreated, $direction, $status, $site_id, $mediaPath ?? null]); + error_log("SignalWireClient.upsertFaxFromSignalWire(): DEBUG - Inserted fax {$jobId}"); + } + } catch (Exception $e) { + error_log("SignalWireClient.upsertFaxFromSignalWire(): ERROR - " . $e->getMessage()); + } + } + + /** + * Download fax media from SignalWire and save locally + * + * @param mixed $fax Fax object from SignalWire API + * @return string|null Local file path if successful, null otherwise + */ + private function downloadFaxMedia($fax): ?string + { + try { + // Get media URL from fax object + $mediaUrl = $fax->mediaUrl ?? null; + if (empty($mediaUrl)) { + error_log("SignalWireClient.downloadFaxMedia(): No media URL available for fax {$fax->sid}"); + return null; + } + + // Create directory for fax media if it doesn't exist + $faxDir = $this->baseDir . '/received_faxes'; + if (!file_exists($faxDir)) { + mkdir($faxDir, 0777, true); + } + + // Generate filename + $filename = $fax->sid . '.pdf'; + $filepath = $faxDir . '/' . $filename; + + // Skip if file already exists + if (file_exists($filepath)) { + error_log("SignalWireClient.downloadFaxMedia(): File already exists: {$filepath}"); + return $filepath; + } + + // Download the file from SignalWire + $fileContent = file_get_contents($mediaUrl); + if ($fileContent === false) { + error_log("SignalWireClient.downloadFaxMedia(): Failed to download media from {$mediaUrl}"); + return null; + } + + // Save the file + if (file_put_contents($filepath, $fileContent) === false) { + error_log("SignalWireClient.downloadFaxMedia(): Failed to save file to {$filepath}"); + return null; + } + + error_log("SignalWireClient.downloadFaxMedia(): Successfully downloaded fax to {$filepath}"); + return $filepath; + } catch (Exception $e) { + error_log("SignalWireClient.downloadFaxMedia(): ERROR - " . $e->getMessage()); + return null; + } + } + + /** + * Forward a fax + * + * @return string + * @throws \PHPMailer\PHPMailer\Exception + */ + public function forwardFax(): string + { + return json_encode(['error' => xlt('Forward fax not yet implemented')]); + } + + /** + * Process uploaded fax files + * + * @return string + */ + public function faxProcessUploads(): string + { + if (empty($_FILES['fax']) || $_FILES['fax']['error'] !== UPLOAD_ERR_OK) { + error_log('Error: No file uploaded or upload error.'); + return ''; + } + + $name = basename((string) $_FILES['fax']['name']); + $tmp_name = $_FILES['fax']['tmp_name']; + $targetDir = $this->baseDir . '/send'; + + if (!file_exists($targetDir) && !mkdir($targetDir, 0777, true)) { + error_log('Error: Failed to create directory.'); + return ''; + } + + $filepath = $targetDir . "/" . $name; + + if (!move_uploaded_file($tmp_name, $filepath)) { + error_log('Error: Failed to move uploaded file.'); + return ''; + } + + return $filepath; + } + + /** + * Format phone number for saving + * + * @param string $number + * @return string + */ + public function formatPhoneForSave($number): string + { + return preg_replace('/[^0-9+]/', '', $number); + } +} diff --git a/interface/modules/custom_modules/oe-module-faxsms/src/Enums/ServiceType.php b/interface/modules/custom_modules/oe-module-faxsms/src/Enums/ServiceType.php new file mode 100644 index 000000000000..6c5ddeca2cba --- /dev/null +++ b/interface/modules/custom_modules/oe-module-faxsms/src/Enums/ServiceType.php @@ -0,0 +1,71 @@ + + * @copyright Copyright (c) 2025 + * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 + */ + +namespace OpenEMR\Modules\FaxSMS\Enums; + +enum ServiceType: int +{ + case RINGCENTRAL = 1; + case TWILIO_SMS = 2; + case ETHERFAX = 3; + case EMAIL = 4; + case CLICKATELL_SMS = 5; + case SIGNALWIRE = 6; + + /** + * Get the display name for this service type + * + * @return string + */ + public function getDisplayName(): string + { + return match ($this) { + self::RINGCENTRAL => 'RingCentral', + self::TWILIO_SMS => 'Twilio SMS', + self::ETHERFAX => 'etherFAX', + self::EMAIL => 'Email', + self::CLICKATELL_SMS => 'Clickatell SMS', + self::SIGNALWIRE => 'SignalWire Fax', + }; + } + + /** + * Get the translated display name for this service type + * + * @return string + */ + public function getTranslatedDisplayName(): string + { + return match ($this) { + self::RINGCENTRAL => xlt('RingCentral'), + self::TWILIO_SMS => xlt('Twilio SMS'), + self::ETHERFAX => xlt('etherFAX'), + self::EMAIL => xlt('Email'), + self::CLICKATELL_SMS => xlt('Clickatell SMS'), + self::SIGNALWIRE => xlt('SignalWire Fax'), + }; + } + + /** + * Try to create from a numeric or string value + * Note: Use this instead of native tryFrom() when you need to handle string inputs + * + * @param int|string $value + * @return self|null + */ + public static function fromValue(int|string $value): ?self + { + $value = (int)$value; + return self::tryFrom($value); + } +} diff --git a/interface/modules/custom_modules/oe-module-faxsms/src/Exception/FaxDocumentException.php b/interface/modules/custom_modules/oe-module-faxsms/src/Exception/FaxDocumentException.php new file mode 100644 index 000000000000..cd0e45ecf995 --- /dev/null +++ b/interface/modules/custom_modules/oe-module-faxsms/src/Exception/FaxDocumentException.php @@ -0,0 +1,17 @@ +{{ "NewCrop MedEntry"|xlt }} - {{ "NewCrop Account Status"|xlt }} + {{ "Ensora MedEntry"|xlt }} + {{ "Ensora Account Status"|xlt }}
{% endblock %} From f17e5579a1273220e48eb114c6efa65470b3f72a Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Wed, 31 Dec 2025 15:57:30 -0500 Subject: [PATCH 031/139] fix: use js_escape instead of attr_js in URLSearchParams within script tags (#10021) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The attr_js() function (attr + json_encode) is for JavaScript inside HTML attributes like onclick. For JavaScript inside "; } - EventAuditLogger::instance()->newEvent( + EventAuditLogger::getInstance()->newEvent( "add_list", $_SESSION['authUser'], $_SESSION['authProvider'], @@ -319,7 +319,7 @@ function listChecksum($list_id) sqlStatement("DELETE FROM list_options WHERE list_id = ?", [$_POST['list_id']]); // delete the list from the master list-of-lists sqlStatement("DELETE FROM list_options WHERE list_id = 'lists' AND option_id=?", [$_POST['list_id']]); - EventAuditLogger::instance()->newEvent( + EventAuditLogger::getInstance()->newEvent( "delete_list", $_SESSION['authUser'], $_SESSION['authProvider'], diff --git a/library/ADODB_mysqli_log.php b/library/ADODB_mysqli_log.php index 0d738c697b00..8d77c8e1c1d7 100644 --- a/library/ADODB_mysqli_log.php +++ b/library/ADODB_mysqli_log.php @@ -42,7 +42,7 @@ function Execute($sql, $inputarr = false, $insertNeedReturn = false) if ($insertNeedReturn) { $GLOBALS['lastidado'] = $this->Insert_ID(); } - EventAuditLogger::instance()->auditSQLEvent($sql, $outcome, $inputarr); + EventAuditLogger::getInstance()->auditSQLEvent($sql, $outcome, $inputarr); return $retval; } diff --git a/library/ESign/views/default/esign_signature_log.php b/library/ESign/views/default/esign_signature_log.php index 3432156a260d..4ffdc4983b79 100644 --- a/library/ESign/views/default/esign_signature_log.php +++ b/library/ESign/views/default/esign_signature_log.php @@ -31,7 +31,7 @@
verified) { - EventAuditLogger::instance()->newEvent( + EventAuditLogger::getInstance()->newEvent( "esign", $_SESSION['authUser'], $_SESSION['authProvider'], diff --git a/library/FeeSheet.class.php b/library/FeeSheet.class.php index 9430468642d2..0de1fa06f77b 100644 --- a/library/FeeSheet.class.php +++ b/library/FeeSheet.class.php @@ -293,7 +293,7 @@ public function logFSMessage($action, $newvalue = '', $logarr = null) } } - EventAuditLogger::instance()->newEvent( + EventAuditLogger::getInstance()->newEvent( 'fee-sheet', $_SESSION['authUser'], $_SESSION['authProvider'], @@ -333,7 +333,7 @@ public function visitChecksum($saved = false) if (CHECKSUM_LOGGING) { $comment = "Checksum = '$ret'"; $comment .= ", Saved = " . ($saved ? "true" : "false"); - EventAuditLogger::instance()->newEvent("checksum", $_SESSION['authUser'], $_SESSION['authProvider'], 1, $comment, $this->pid); + EventAuditLogger::getInstance()->newEvent("checksum", $_SESSION['authUser'], $_SESSION['authProvider'], 1, $comment, $this->pid); } return $ret; } diff --git a/library/ajax/adminacl_ajax.php b/library/ajax/adminacl_ajax.php index 778e67aa688c..c4abae1c0d2b 100644 --- a/library/ajax/adminacl_ajax.php +++ b/library/ajax/adminacl_ajax.php @@ -77,7 +77,7 @@ //add the group, then log it, then return updated membership data AclExtended::addUserAros($_POST["name"], $_POST["selection"]); - EventAuditLogger::instance()->newEvent("security-administration-update", $_SESSION['authUser'], $_SESSION['authProvider'], 1, "Added " . $_POST["name"] . " to following access group(s): " . implode(', ', $_POST["selection"])); + EventAuditLogger::getInstance()->newEvent("security-administration-update", $_SESSION['authUser'], $_SESSION['authProvider'], 1, "Added " . $_POST["name"] . " to following access group(s): " . implode(', ', $_POST["selection"])); echo user_group_listings_xml($_POST["name"], $error); } @@ -104,7 +104,7 @@ //remove the group(s), then log it, then return updated membership data AclExtended::removeUserAros($_POST["name"], $_POST["selection"]); - EventAuditLogger::instance()->newEvent("security-administration-update", $_SESSION['authUser'], $_SESSION['authProvider'], 1, "Removed " . $_POST["name"] . " from following access group(s): " . implode(', ', $_POST["selection"])); + EventAuditLogger::getInstance()->newEvent("security-administration-update", $_SESSION['authUser'], $_SESSION['authProvider'], 1, "Removed " . $_POST["name"] . " from following access group(s): " . implode(', ', $_POST["selection"])); echo user_group_listings_xml($_POST["name"], $error); } } diff --git a/library/ajax/log_print_action_ajax.php b/library/ajax/log_print_action_ajax.php index 00d2a461671f..1b2faf52ab42 100644 --- a/library/ajax/log_print_action_ajax.php +++ b/library/ajax/log_print_action_ajax.php @@ -22,4 +22,4 @@ CsrfUtils::csrfNotVerified(); } -EventAuditLogger::instance()->newEvent("print", $_SESSION['authUser'], $_SESSION['authProvider'], 1, (new Html2Text($_POST['comments'], ['do_links' => 'none', 'width' => 0]))->getText()); +EventAuditLogger::getInstance()->newEvent("print", $_SESSION['authUser'], $_SESSION['authProvider'], 1, (new Html2Text($_POST['comments'], ['do_links' => 'none', 'width' => 0]))->getText()); diff --git a/library/auth.inc.php b/library/auth.inc.php index 60e2d5bff88d..9d539d42967a 100644 --- a/library/auth.inc.php +++ b/library/auth.inc.php @@ -82,9 +82,9 @@ // If session has timed out / been destroyed, logout record for null user/provider will be invalid. if (!empty($_SESSION['authUser']) && !empty($_SESSION['authProvider'])) { if ((isset($_GET['timeout'])) && ($_GET['timeout'] == "1")) { - EventAuditLogger::instance()->newEvent("logout", $_SESSION['authUser'], $_SESSION['authProvider'], 0, "timeout, so force logout"); + EventAuditLogger::getInstance()->newEvent("logout", $_SESSION['authUser'], $_SESSION['authProvider'], 0, "timeout, so force logout"); } else { - EventAuditLogger::instance()->newEvent("logout", $_SESSION['authUser'], $_SESSION['authProvider'], 1, "success"); + EventAuditLogger::getInstance()->newEvent("logout", $_SESSION['authUser'], $_SESSION['authProvider'], 1, "success"); } } authCloseSession(); @@ -93,7 +93,7 @@ // Check if session is valid (already logged in user) if (!AuthUtils::authCheckSession()) { // Session is not valid (this should only happen if a user's password is changed via another session while the user is logged in) - EventAuditLogger::instance()->newEvent("logout", $_SESSION['authUser'] ?? '', $_SESSION['authProvider'] ?? '', 0, "authCheckSession() check failed, so force logout"); + EventAuditLogger::getInstance()->newEvent("logout", $_SESSION['authUser'] ?? '', $_SESSION['authProvider'] ?? '', 0, "authCheckSession() check failed, so force logout"); authCloseSession(); authLoginScreen(true); } @@ -109,7 +109,7 @@ SessionTracker::updateSessionExpiration(); } else { // User has timed out. - EventAuditLogger::instance()->newEvent("logout", $_SESSION['authUser'], $_SESSION['authProvider'], 0, "timeout, so force logout"); + EventAuditLogger::getInstance()->newEvent("logout", $_SESSION['authUser'], $_SESSION['authProvider'], 0, "timeout, so force logout"); authCloseSession(); authLoginScreen(true); } diff --git a/library/deletedrug.php b/library/deletedrug.php index f828ea141e4e..e022f7619cfd 100644 --- a/library/deletedrug.php +++ b/library/deletedrug.php @@ -50,7 +50,7 @@ if (!empty($drugname)) { $medicationlist = "DELETE FROM lists WHERE pid = ? AND type = 'medication' AND title = ?"; sqlStatement($medicationlist, [$pid, $drugname]); - EventAuditLogger::instance()->newEvent("delete", $_SESSION['authUser'], $_SESSION['authProvider'], 1, $drugname . " prescription/medication removed", $pid); + EventAuditLogger::getInstance()->newEvent("delete", $_SESSION['authUser'], $_SESSION['authProvider'], 1, $drugname . " prescription/medication removed", $pid); } } catch (Exception $e) { echo 'Caught exception ', text($e->getMessage()), "\n"; diff --git a/library/direct_message_check.inc.php b/library/direct_message_check.inc.php index cf5508a0b045..ad7637e6cc48 100644 --- a/library/direct_message_check.inc.php +++ b/library/direct_message_check.inc.php @@ -510,7 +510,7 @@ function phimail_logit($success, $text, $pid = 0, $event = "direct-message-check if (!$success) { (new SystemLogger())->errorLogCaller($event, ['success' => $success, 'text' => $text, 'pid' => $pid]); } - EventAuditLogger::instance()->newEvent($event, "phimail-service", 0, $success, $text, $pid); + EventAuditLogger::getInstance()->newEvent($event, "phimail-service", 0, $success, $text, $pid); } /** diff --git a/library/payment.inc.php b/library/payment.inc.php index 552cc809d9b9..0ab61318a1a7 100644 --- a/library/payment.inc.php +++ b/library/payment.inc.php @@ -263,7 +263,7 @@ function row_delete($table, $where): void $logstring .= $key . "='" . addslashes((string) $value) . "'"; } - EventAuditLogger::instance()->newEvent("delete", $_SESSION['authUser'], $_SESSION['authProvider'], 1, "$table: $logstring"); + EventAuditLogger::getInstance()->newEvent("delete", $_SESSION['authUser'], $_SESSION['authProvider'], 1, "$table: $logstring"); ++$count; } @@ -279,7 +279,7 @@ function row_delete($table, $where): void function row_modify($table, $set, $where): void { if (sqlQuery("SELECT * FROM " . escape_table_name($table) . " WHERE $where")) { - EventAuditLogger::instance()->newEvent( + EventAuditLogger::getInstance()->newEvent( "deactivate", $_SESSION['authUser'], $_SESSION['authProvider'], diff --git a/portal/account/account.lib.php b/portal/account/account.lib.php index 517e592ee4cf..f3430e14447d 100644 --- a/portal/account/account.lib.php +++ b/portal/account/account.lib.php @@ -214,12 +214,12 @@ function verifyEmail(string $languageChoice, string $fname, string $mname, strin $mail->AltBody = $plainMessage; if ($mail->Send()) { - EventAuditLogger::instance()->newEvent('patient-reg-email-verify', '', '', 1, "The patient registration verification email was successfully sent to " . $email); + EventAuditLogger::getInstance()->newEvent('patient-reg-email-verify', '', '', 1, "The patient registration verification email was successfully sent to " . $email); (new SystemLogger())->debug("The patient registration verification email was successfully sent to " . $email); return true; } else { $email_status = $mail->ErrorInfo; - EventAuditLogger::instance()->newEvent('patient-reg-email-verify', '', '', 0, "The patient registration verification email was not successfully sent to " . $email . " because of following issue: " . $email_status); + EventAuditLogger::getInstance()->newEvent('patient-reg-email-verify', '', '', 0, "The patient registration verification email was not successfully sent to " . $email . " because of following issue: " . $email_status); (new SystemLogger())->error("The patient registration verification email was not successfully sent to " . $email . " because of following issue: " . $email_status); return false; } @@ -250,18 +250,18 @@ function resetPassword(string $dob, string $lname, string $fname, string $email) ); if (sqlNumRows($sql) > 1) { - EventAuditLogger::instance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: Multiple patients were found in patient_data for search of: " . $fname . " " . $lname . " " . $dob . " " . $email); + EventAuditLogger::getInstance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: Multiple patients were found in patient_data for search of: " . $fname . " " . $lname . " " . $dob . " " . $email); (new SystemLogger())->error("resetPassword function selected more than 1 patient from patient_data, so was unable to reset the password"); return 1; } if (!sqlNumRows($sql)) { - EventAuditLogger::instance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: No patient was found in patient_data for search of: " . $fname . " " . $lname . " " . $dob . " " . $email); + EventAuditLogger::getInstance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: No patient was found in patient_data for search of: " . $fname . " " . $lname . " " . $dob . " " . $email); (new SystemLogger())->debug("resetPassword function found no patient in patient_data, so was unable to reset the password"); return 1; } $row = sqlFetchArray($sql); if (empty($row['pid'])) { - EventAuditLogger::instance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: No patient was found in patient_data for search of: " . $fname . " " . $lname . " " . $dob . " " . $email); + EventAuditLogger::getInstance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: No patient was found in patient_data for search of: " . $fname . " " . $lname . " " . $dob . " " . $email); (new SystemLogger())->debug("resetPassword function found no patient in patient_data, so was unable to reset the password"); return 1; } @@ -269,18 +269,18 @@ function resetPassword(string $dob, string $lname, string $fname, string $email) $sql = sqlStatement("SELECT `pid` FROM `patient_access_onsite` WHERE `pid`=?", [$tempPid]); if (sqlNumRows($sql) > 1) { - EventAuditLogger::instance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: Multiple patients were found in patient_access_onsite for search of pid " . $tempPid); + EventAuditLogger::getInstance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: Multiple patients were found in patient_access_onsite for search of pid " . $tempPid); (new SystemLogger())->error("resetPassword function selected more than 1 patient from patient_access_onsite, so was unable to reset the password"); return 1; } if (!sqlNumRows($sql)) { - EventAuditLogger::instance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: No patient was found in patient_access_onsite for search of pid " . $tempPid); + EventAuditLogger::getInstance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: No patient was found in patient_access_onsite for search of pid " . $tempPid); (new SystemLogger())->debug("resetPassword function found no patient in patient_access_onsite, so was unable to reset the password"); return 1; } $row = sqlFetchArray($sql); if (empty($row['pid'])) { - EventAuditLogger::instance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: No patient was found in patient_access_onsite for search of pid " . $tempPid); + EventAuditLogger::getInstance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: No patient was found in patient_access_onsite for search of pid " . $tempPid); (new SystemLogger())->debug("resetPassword function found no patient in patient_access_onsite, so was unable to reset the password"); return 1; } @@ -352,7 +352,7 @@ function doCredentials($pid, $resetPass = false, $resetPassEmail = ''): bool (new SystemLogger())->error("doCredentials function did not find a patient from patient_data for " . $pid . " (this should never happen since checked in resetPassword function), so was unable to reset the password"); return true; } else { // !$resetPass - EventAuditLogger::instance()->newEvent('patient-registration', '', '', 0, "Patient credential creation failure: Following pid did not exist: " . $pid); + EventAuditLogger::getInstance()->newEvent('patient-registration', '', '', 0, "Patient credential creation failure: Following pid did not exist: " . $pid); (new SystemLogger())->error("doCredentials function did not find a patient from patient_data for " . $pid . " , so was unable to create credentials"); return false; } @@ -365,14 +365,14 @@ function doCredentials($pid, $resetPass = false, $resetPassEmail = ''): bool return true; } if (!validEmail($resetPassEmail)) { - EventAuditLogger::instance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: Email " . $resetPassEmail . " was not considered valid for pid: " . $pid); + EventAuditLogger::getInstance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: Email " . $resetPassEmail . " was not considered valid for pid: " . $pid); (new SystemLogger())->error("doCredentials function with email " . $resetPassEmail . " for pid " . $pid . " that was not valid per validEmail function, so was unable to reset the password"); return false; } $newpd['email'] = $resetPassEmail; } else { // !$resetPass if (!validEmail($newpd['email'])) { - EventAuditLogger::instance()->newEvent('patient-registration', '', '', 0, "Patient password reset failure: Email " . $newpd['email'] . " was not considered valid for pid: " . $pid); + EventAuditLogger::getInstance()->newEvent('patient-registration', '', '', 0, "Patient password reset failure: Email " . $newpd['email'] . " was not considered valid for pid: " . $pid); (new SystemLogger())->error("doCredentials function with email " . $newpd['email'] . " for pid " . $pid . " was not valid per validEmail function, so was unable to complete the registration"); return false; } @@ -394,11 +394,11 @@ function doCredentials($pid, $resetPass = false, $resetPassEmail = ''): bool if (empty($token)) { // Serious issue if this is case, so exit. if ($resetPass) { - EventAuditLogger::instance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure secondary critical encryption error for email " . $newpd['email'] . " and pid: " . $pid); + EventAuditLogger::getInstance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure secondary critical encryption error for email " . $newpd['email'] . " and pid: " . $pid); (new SystemLogger())->error("Error : Token encryption failed during patient password reset - exiting"); return false; } else { // !$resetPass - EventAuditLogger::instance()->newEvent('patient-registration', '', '', 0, "Patient credential creation registration failure secondary critical encryption error for email " . $newpd['email'] . " and pid: " . $pid); + EventAuditLogger::getInstance()->newEvent('patient-registration', '', '', 0, "Patient credential creation registration failure secondary critical encryption error for email " . $newpd['email'] . " and pid: " . $pid); (new SystemLogger())->error("Error : Token encryption failed during patient registration - exiting"); return false; } @@ -420,7 +420,7 @@ function doCredentials($pid, $resetPass = false, $resetPassEmail = ''): bool $newHash = (new AuthHash('auth'))->passwordHash($clear_pass); if (empty($newHash)) { // Serious issue if this is case, so exit. - EventAuditLogger::instance()->newEvent('patient-registration', '', '', 0, "Patient credential creation registration failure secondary critical hashing error for email " . $newpd['email'] . " and pid: " . $pid); + EventAuditLogger::getInstance()->newEvent('patient-registration', '', '', 0, "Patient credential creation registration failure secondary critical hashing error for email " . $newpd['email'] . " and pid: " . $pid); (new SystemLogger())->error("Error : Hashing failed during patient registration - exiting"); return false; } @@ -439,7 +439,7 @@ function doCredentials($pid, $resetPass = false, $resetPassEmail = ''): bool $res = sqlStatement("SELECT `id` FROM `patient_access_onsite` WHERE `pid` = ?", [$pid]); if (sqlNumRows($res)) { // this should never happen in current use case where these credentials are created after a new patient registers, so will return error - EventAuditLogger::instance()->newEvent('patient-registration', '', '', 0, "Patient credential creation registration failure secondary to credentials already existing for email " . $newpd['email'] . " and pid: " . $pid); + EventAuditLogger::getInstance()->newEvent('patient-registration', '', '', 0, "Patient credential creation registration failure secondary to credentials already existing for email " . $newpd['email'] . " and pid: " . $pid); (new SystemLogger())->error("OpenEMR Error : doCredentials for registration - already credentials exists, so unable to create new credentials."); return false; } else { @@ -476,20 +476,20 @@ function doCredentials($pid, $resetPass = false, $resetPassEmail = ''): bool if ($mail->Send()) { if ($resetPass) { - EventAuditLogger::instance()->newEvent('patient-password-reset', '', '', 1, "The patient reset email was successfully sent to " . $newpd['email'] . " for pid " . $pid . "."); + EventAuditLogger::getInstance()->newEvent('patient-password-reset', '', '', 1, "The patient reset email was successfully sent to " . $newpd['email'] . " for pid " . $pid . "."); (new SystemLogger())->debug("The patient reset email was successfully sent to " . $newpd['email'] . " for pid " . $pid . "."); } else { // !$resetPass - EventAuditLogger::instance()->newEvent('patient-registration', '', '', 1, "The patient registration credentials email was successfully sent to " . $newpd['email'] . " for pid " . $pid . "."); + EventAuditLogger::getInstance()->newEvent('patient-registration', '', '', 1, "The patient registration credentials email was successfully sent to " . $newpd['email'] . " for pid " . $pid . "."); (new SystemLogger())->debug("The patient registration credentials email was successfully sent to " . $newpd['email'] . " for pid " . $pid . "."); } return true; } else { $email_status = $mail->ErrorInfo; if ($resetPass) { - EventAuditLogger::instance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: The reset email to " . $newpd['email'] . " for pid " . $pid . " was not successful because of following issue: " . $email_status); + EventAuditLogger::getInstance()->newEvent('patient-password-reset', '', '', 0, "Patient password reset failure: The reset email to " . $newpd['email'] . " for pid " . $pid . " was not successful because of following issue: " . $email_status); (new SystemLogger())->error("Patient password reset failure: The reset email to " . $newpd['email'] . " for pid " . $pid . " was not successful because of following issue: " . $email_status); } else { // !$resetPass - EventAuditLogger::instance()->newEvent('patient-registration', '', '', 0, "The patient registration credentials email was not successfully sent to " . $newpd['email'] . " for pid " . $pid . " because of following issue: " . $email_status); + EventAuditLogger::getInstance()->newEvent('patient-registration', '', '', 0, "The patient registration credentials email was not successfully sent to " . $newpd['email'] . " for pid " . $pid . " because of following issue: " . $email_status); (new SystemLogger())->error("The patient registration credentials email was not successfully sent to " . $newpd['email'] . " for pid " . $pid . " because of following issue: " . $email_status); // notify admin of failure. $title = xlt("Failed Registration"); diff --git a/portal/index.php b/portal/index.php index 8662f0de0967..232f6a25b132 100644 --- a/portal/index.php +++ b/portal/index.php @@ -182,14 +182,14 @@ $sqlResource = sqlStatementNoLog("SELECT `id`, `token_onetime`, `fname`, `mname`, `lname`, `dob`, `email`, `language` FROM `verify_email` WHERE `active` = 1 AND `token_onetime` LIKE BINARY ?", [$token_one_time . '%']); if (sqlNumRows($sqlResource) > 1) { (new SystemLogger())->debug("active token (" . $token_one_time . ") found more than once, so stopped attempt to use forward_email_verify token"); - EventAuditLogger::instance()->newEvent('patient-reg-email-verify', '', '', 0, "active token (" . $token_one_time . ") found more than once, so stopped attempt to use forward_email_verify token"); + EventAuditLogger::getInstance()->newEvent('patient-reg-email-verify', '', '', 0, "active token (" . $token_one_time . ") found more than once, so stopped attempt to use forward_email_verify token"); SessionUtil::portalSessionCookieDestroy(); header('Location: ' . $landingpage . '&w&u'); exit(); } if (!sqlNumRows($sqlResource)) { (new SystemLogger())->debug("active token (" . $token_one_time . ") not found, so stopped attempt to use forward_email_verify token"); - EventAuditLogger::instance()->newEvent('patient-reg-email-verify', '', '', 0, "active token (" . $token_one_time . ") not found, so stopped attempt to use forward_email_verify token"); + EventAuditLogger::getInstance()->newEvent('patient-reg-email-verify', '', '', 0, "active token (" . $token_one_time . ") not found, so stopped attempt to use forward_email_verify token"); SessionUtil::portalSessionCookieDestroy(); header('Location: ' . $landingpage . '&w&u'); exit(); @@ -197,7 +197,7 @@ $sqlVerify = sqlFetchArray($sqlResource); if (empty($sqlVerify['id']) || empty($sqlVerify['token_onetime'])) { (new SystemLogger())->debug("active token (" . $token_one_time . ") not properly set up, so stopped attempt to use forward_email_verify token"); - EventAuditLogger::instance()->newEvent('patient-reg-email-verify', '', '', 0, "active token (" . $token_one_time . ") not properly set up, so stopped attempt to use forward_email_verify token"); + EventAuditLogger::getInstance()->newEvent('patient-reg-email-verify', '', '', 0, "active token (" . $token_one_time . ") not properly set up, so stopped attempt to use forward_email_verify token"); SessionUtil::portalSessionCookieDestroy(); header('Location: ' . $landingpage . '&w&u'); exit(); @@ -208,7 +208,7 @@ $validateTime = hex2bin(str_replace($token_one_time, '', $sqlVerify['token_onetime'])); if ($validateTime <= time()) { (new SystemLogger())->debug("active token (" . $token_one_time . ") has expired, so stopped attempt to use forward_email_verify token"); - EventAuditLogger::instance()->newEvent('patient-reg-email-verify', '', '', 0, "active token (" . $token_one_time . ") has expired, so stopped attempt to use forward_email_verify token"); + EventAuditLogger::getInstance()->newEvent('patient-reg-email-verify', '', '', 0, "active token (" . $token_one_time . ") has expired, so stopped attempt to use forward_email_verify token"); SessionUtil::portalSessionCookieDestroy(); die(xlt("Your email verification link has expired. Reset and try again.")); } @@ -230,12 +230,12 @@ $portalRegistrationAuthorization = true; $_SESSION['token_id_holder'] = $sqlVerify['id']; (new SystemLogger())->debug("token worked for forward_email_verify token, now on to registration"); - EventAuditLogger::instance()->newEvent('patient-reg-email-verify', '', '', 1, "token (" . $token_one_time . ") was successful for forward_email_verify token"); + EventAuditLogger::getInstance()->newEvent('patient-reg-email-verify', '', '', 1, "token (" . $token_one_time . ") was successful for forward_email_verify token"); require_once(__DIR__ . "/account/register.php"); exit(); } else { (new SystemLogger())->debug("active token (" . $token_one_time . ") did not have all required data, so stopped attempt to use forward_email_verify token"); - EventAuditLogger::instance()->newEvent('patient-reg-email-verify', '', '', 0, "active token (" . $token_one_time . ") did not have all required data, so stopped attempt to use forward_email_verify token"); + EventAuditLogger::getInstance()->newEvent('patient-reg-email-verify', '', '', 0, "active token (" . $token_one_time . ") did not have all required data, so stopped attempt to use forward_email_verify token"); SessionUtil::portalSessionCookieDestroy(); header('Location: ' . $landingpage . '&w&u'); exit(); diff --git a/portal/lib/appsql.class.php b/portal/lib/appsql.class.php index fd2f08d62e4e..9d28670d1242 100644 --- a/portal/lib/appsql.class.php +++ b/portal/lib/appsql.class.php @@ -51,7 +51,7 @@ public function zQuery($sql, $params = '', $log = false, $error = true) } if ($log) { - EventAuditLogger::instance()->auditSQLEvent($sql, $result, $params); + EventAuditLogger::getInstance()->auditSQLEvent($sql, $result, $params); } return $return; @@ -98,7 +98,7 @@ public function getPortalAudit($patientid, $action = 'review', $activity = 'prof } if ($oelog) { - EventAuditLogger::instance()->auditSQLEvent($sql, $result, $audit); + EventAuditLogger::getInstance()->auditSQLEvent($sql, $result, $audit); } if ($rtn == 'last') { @@ -366,6 +366,6 @@ public function generateSequenceID() public function portalNewEvent($event, $user, $groupname, $success, $comments = "", $patient_id = null, $log_from = '', $user_notes = "", $ccda_doc_id = 0) { - EventAuditLogger::instance()->recordLogItem($success, $event, $user, $groupname, $comments, $patient_id, null, $log_from, null, $ccda_doc_id, $user_notes); + EventAuditLogger::getInstance()->recordLogItem($success, $event, $user, $groupname, $comments, $patient_id, null, $log_from, null, $ccda_doc_id, $user_notes); } }// app query class diff --git a/portal/lib/portal_mail.inc.php b/portal/lib/portal_mail.inc.php index fd7e0dfa11f1..c9f00d02f3ff 100644 --- a/portal/lib/portal_mail.inc.php +++ b/portal/lib/portal_mail.inc.php @@ -305,7 +305,7 @@ function updatePortalMailMessageStatus($id, $message_status, $owner): void $log_from = 'patient-portal'; $puser = $_SESSION['pid']; } - EventAuditLogger::instance()->newEvent("delete", $loguser, 'Portal', 1, $evt, $puser, $log_from, ''); + EventAuditLogger::getInstance()->newEvent("delete", $loguser, 'Portal', 1, $evt, $puser, $log_from, ''); } } diff --git a/src/Common/Auth/AuthUtils.php b/src/Common/Auth/AuthUtils.php index e09d2706bda9..ec7427267eaf 100644 --- a/src/Common/Auth/AuthUtils.php +++ b/src/Common/Auth/AuthUtils.php @@ -150,7 +150,7 @@ private function confirmPatientPassword($username, &$password, $email = '') // Check to ensure username and password are not empty if (empty($username) || empty($password)) { - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". empty username or password"); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". empty username or password"); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; @@ -161,25 +161,25 @@ private function confirmPatientPassword($username, &$password, $email = '') $patientInfo = privQuery($getPatientSQL, [$username]); if (empty($patientInfo) || empty($patientInfo['id']) || empty($patientInfo['pid'])) { // Patient portal information not found - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient portal information not found", $patientInfo['pid']); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient portal information not found", $patientInfo['pid']); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; } elseif (empty($patientInfo['portal_username']) || empty($patientInfo['portal_login_username']) || empty($patientInfo['portal_pwd'])) { // Patient missing username, login username, or password - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient missing username, login username, or password", $patientInfo['pid']); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient missing username, login username, or password", $patientInfo['pid']); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; } elseif (!empty($patientInfo['portal_onetime'])) { // Patient onetime is set, so still in process of verifying account - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient account not yet verified (portal_onetime set)", $patientInfo['pid']); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient account not yet verified (portal_onetime set)", $patientInfo['pid']); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; } elseif ($patientInfo['portal_pwd_status'] != 1) { // Patient portal_pwd_status is not 1, so still in process of verifying account - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient account not yet verified (portal_pwd_status is not 1)", $patientInfo['pid']); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient account not yet verified (portal_pwd_status is not 1)", $patientInfo['pid']); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; @@ -190,13 +190,13 @@ private function confirmPatientPassword($username, &$password, $email = '') $patientDataInfo = privQuery($getPatientDataSQL, [$patientInfo['pid']]); if (empty($patientDataInfo) || empty($patientDataInfo['pid'])) { // Patient not found - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient not found"); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient not found"); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; } elseif ($patientDataInfo['allow_patient_portal'] != "YES") { // Patient does not permit portal access - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient does not permit portal access", $patientDataInfo['pid']); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient does not permit portal access", $patientDataInfo['pid']); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; @@ -204,19 +204,19 @@ private function confirmPatientPassword($username, &$password, $email = '') // Need to enforce email in credentials if (empty($email)) { // Patient email was not included in credentials - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient email was not included in credentials", $patientDataInfo['pid']); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient email was not included in credentials", $patientDataInfo['pid']); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; } elseif (empty($patientDataInfo['email'])) { // Patient email missing from demographics - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient does not have an email in demographics", $patientDataInfo['pid']); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient does not have an email in demographics", $patientDataInfo['pid']); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; } elseif ($patientDataInfo['email'] != $email) { // Email not correct - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient email not correct", $patientDataInfo['pid']); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient email not correct", $patientDataInfo['pid']); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; @@ -225,7 +225,7 @@ private function confirmPatientPassword($username, &$password, $email = '') // This error should never happen, but still gotta check for it if ($patientInfo['pid'] != $patientDataInfo['pid']) { - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient pid comparison with very unusual error"); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient pid comparison with very unusual error"); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; @@ -234,14 +234,14 @@ private function confirmPatientPassword($username, &$password, $email = '') // Authentication // First, ensure the user hash is a valid hash if (!AuthHash::hashValid($patientInfo['portal_pwd'])) { - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient stored password hash is invalid", $patientDataInfo['pid']); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient stored password hash is invalid", $patientDataInfo['pid']); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; } // Second, authentication if (!AuthHash::passwordVerify($password, $patientInfo['portal_pwd'])) { - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient password incorrect", $patientDataInfo['pid']); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". patient password incorrect", $patientDataInfo['pid']); $this->clearFromMemory($password); return false; } @@ -294,9 +294,9 @@ private function confirmUserPassword($username, &$password) if (!$returnArray['pass']) { $this->incrementIpLoginFailedCounter($ip['ip_string']); if ($returnArray['force_block']) { - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". IP address has been manually blocked"); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". IP address has been manually blocked"); } else { - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". IP address exceeded maximum number of failed logins"); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". IP address exceeded maximum number of failed logins"); } $this->clearFromMemory($password); if ($returnArray['email_notification']) { @@ -315,7 +315,7 @@ private function confirmUserPassword($username, &$password) // Utilize this during logins (and not during standard password checks within openemr such as esign) $this->incrementIpLoginFailedCounter($ip['ip_string']); } - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". empty username or password"); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". empty username or password"); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; @@ -329,7 +329,7 @@ private function confirmUserPassword($username, &$password) // Utilize this during logins (and not during standard password checks within openemr such as esign) $this->incrementIpLoginFailedCounter($ip['ip_string']); } - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". user not found"); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". user not found"); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; @@ -338,7 +338,7 @@ private function confirmUserPassword($username, &$password) // Utilize this during logins (and not during standard password checks within openemr such as esign) $this->incrementIpLoginFailedCounter($ip['ip_string']); } - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". user not active"); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". user not active"); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; @@ -352,7 +352,7 @@ private function confirmUserPassword($username, &$password) // Utilize this during logins (and not during standard password checks within openemr such as esign) $this->incrementIpLoginFailedCounter($ip['ip_string']); } - EventAuditLogger::instance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". user not found in a group"); + EventAuditLogger::getInstance()->newEvent($event, $username, '', 0, $beginLog . ": " . $ip['ip_string'] . ". user not found in a group"); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; @@ -364,7 +364,7 @@ private function confirmUserPassword($username, &$password) // Utilize this during logins (and not during standard password checks within openemr such as esign) $this->incrementIpLoginFailedCounter($ip['ip_string']); } - EventAuditLogger::instance()->newEvent($event, $username, $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user not in any phpGACL groups"); + EventAuditLogger::getInstance()->newEvent($event, $username, $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user not in any phpGACL groups"); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; @@ -380,7 +380,7 @@ private function confirmUserPassword($username, &$password) // Utilize this during logins (and not during standard password checks within openemr such as esign) $this->incrementIpLoginFailedCounter($ip['ip_string']); } - EventAuditLogger::instance()->newEvent($event, $username, $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user credentials not found"); + EventAuditLogger::getInstance()->newEvent($event, $username, $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user credentials not found"); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; @@ -393,7 +393,7 @@ private function confirmUserPassword($username, &$password) if (!$checkArray['pass']) { $this->incrementLoginFailedCounter($username); $this->incrementIpLoginFailedCounter($ip['ip_string']); - EventAuditLogger::instance()->newEvent($event, $username, $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user exceeded maximum number of failed logins"); + EventAuditLogger::getInstance()->newEvent($event, $username, $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user exceeded maximum number of failed logins"); $this->clearFromMemory($password); if ($checkArray['email_notification']) { $this->notifyUserBlock($username); @@ -412,7 +412,7 @@ private function confirmUserPassword($username, &$password) $this->incrementLoginFailedCounter($username); $this->incrementIpLoginFailedCounter($ip['ip_string']); } - EventAuditLogger::instance()->newEvent($event, $username, $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user failed ldap authentication"); + EventAuditLogger::getInstance()->newEvent($event, $username, $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user failed ldap authentication"); $this->clearFromMemory($password); return false; } @@ -424,7 +424,7 @@ private function confirmUserPassword($username, &$password) // Utilize this during logins (and not during standard password checks within openemr such as esign) $this->incrementIpLoginFailedCounter($ip['ip_string']); } - EventAuditLogger::instance()->newEvent($event, $username, $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user stored password hash is invalid"); + EventAuditLogger::getInstance()->newEvent($event, $username, $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user stored password hash is invalid"); $this->clearFromMemory($password); $this->preventTimingAttack(); return false; @@ -436,7 +436,7 @@ private function confirmUserPassword($username, &$password) $this->incrementLoginFailedCounter($username); $this->incrementIpLoginFailedCounter($ip['ip_string']); } - EventAuditLogger::instance()->newEvent($event, $username, $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user password incorrect"); + EventAuditLogger::getInstance()->newEvent($event, $username, $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user password incorrect"); $this->clearFromMemory($password); return false; } @@ -459,7 +459,7 @@ private function confirmUserPassword($username, &$password) // Utilize this during logins (and not during standard password checks within openemr such as esign) $this->incrementIpLoginFailedCounter($ip['ip_string']); } - EventAuditLogger::instance()->newEvent($event, $username, $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user password is expired"); + EventAuditLogger::getInstance()->newEvent($event, $username, $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user password is expired"); error_log($username . ": " . $ip['ip_string'] . ". user password is expired"); $this->clearFromMemory($password); return false; @@ -482,14 +482,14 @@ private function confirmUserPassword($username, &$password) die("OpenEMR Error : OpenEMR is not working because broken function."); } self::setUserSessionVariables($username, $hash, $userInfo, $authGroup); - EventAuditLogger::instance()->newEvent('login', $username, $authGroup, 1, "success: " . $ip['ip_string']); + EventAuditLogger::getInstance()->newEvent('login', $username, $authGroup, 1, "success: " . $ip['ip_string']); } elseif ($this->apiAuth) { // Set up class variables that the api will need to collect (log for API is done outside) $this->userId = $userInfo['id']; $this->userGroup = $authGroup; } else { // Log for authentication that are done, which are not api auth or login auth - EventAuditLogger::instance()->newEvent('auth', $username, $authGroup, 1, "Auth success: " . $ip['ip_string']); + EventAuditLogger::getInstance()->newEvent('auth', $username, $authGroup, 1, "Auth success: " . $ip['ip_string']); } return true; } @@ -517,7 +517,7 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, $this->errorMessage = xl("Password update error! Empty username or password."); $this->clearFromMemory($currentPwd); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent('password', $_SESSION['authUser'], $_SESSION['authProvider'], 0, "Password change Failure: " . $ip['ip_string'] . ' empty username or password'); + EventAuditLogger::getInstance()->newEvent('password', $_SESSION['authUser'], $_SESSION['authProvider'], 0, "Password change Failure: " . $ip['ip_string'] . ' empty username or password'); return false; } @@ -552,14 +552,14 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, $this->errorMessage = xl("Trying to create user with existing username!"); $this->clearFromMemory($currentPwd); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Trying to create new user with existing username"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Trying to create new user with existing username"); return false; } if (empty($userInfo['password'])) { $this->errorMessage = xl("Password update error!"); $this->clearFromMemory($currentPwd); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Current user password not found"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Current user password not found"); return false; } // If this user is changing his own password, then confirm that they have the current password correct @@ -567,7 +567,7 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, $this->errorMessage = xl("Incorrect password!"); $this->clearFromMemory($currentPwd); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Incorrect password"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Incorrect password"); return false; } } else { @@ -576,7 +576,7 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, $this->errorMessage = xl("Not authorized to manage users!"); $this->clearFromMemory($currentPwd); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " User not authorized to manage other user's passwords"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " User not authorized to manage other user's passwords"); return false; } @@ -586,14 +586,14 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, $this->errorMessage = xl("Password update error!"); $this->clearFromMemory($currentPwd); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " authUser session is empty"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " authUser session is empty"); return false; } if (!$this->activeDirectoryValidation($_SESSION['authUser'], $currentPwd)) { $this->errorMessage = xl("Incorrect password!"); $this->clearFromMemory($currentPwd); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Incorrect password"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Incorrect password"); return false; } } else { @@ -605,14 +605,14 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, $this->errorMessage = xl("Password update error!"); $this->clearFromMemory($currentPwd); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Unable to find user credentials"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Unable to find user credentials"); return false; } if (!AuthHash::passwordVerify($currentPwd, $adminInfo['password'])) { $this->errorMessage = xl("Incorrect password!"); $this->clearFromMemory($currentPwd); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Incorrect password"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Incorrect password"); return false; } } @@ -633,7 +633,7 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, // Something is seriously wrong with the random generator $this->clearFromMemory($newPwd); error_log('OpenEMR Error : OpenEMR is not working because unable to create a random unique string.'); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " OpenEMR Error : OpenEMR is not working because unable to create a random unique string."); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " OpenEMR Error : OpenEMR is not working because unable to create a random unique string."); die("OpenEMR Error : OpenEMR is not working because unable to create a random unique string."); } } @@ -642,7 +642,7 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, if (empty($newPwd)) { $this->errorMessage = xl("Empty Password Not Allowed"); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Empty password"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Empty password"); return false; } @@ -650,7 +650,7 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, if ((!$ldapDummyPassword) && (!$this->testMinimumPasswordLength($newPwd))) { $this->errorMessage = xl("Password not long enough"); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Password not long enough"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Password not long enough"); return false; } @@ -658,7 +658,7 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, if ((!$ldapDummyPassword) && (!$this->testMaximumPasswordLength($newPwd))) { $this->errorMessage = xl("Password too long"); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Password too long"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Password too long"); return false; } @@ -666,7 +666,7 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, if ((!$ldapDummyPassword) && (!$this->testPasswordStrength($newPwd))) { $this->errorMessage = xl("Password not strong enough"); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Password not strong enough"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Password not strong enough"); return false; } @@ -677,7 +677,7 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, if (empty($new_username)) { $this->errorMessage = xl("Password update error!"); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " New user username is empty"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " New user username is empty"); return false; } // Collect the new user id from the users table @@ -689,7 +689,7 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, if (empty($user_id) || empty($user_id['id'])) { $this->errorMessage = xl("Password update error!"); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " New user id not found"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " New user id not found"); return false; } // Create the new user password hash @@ -697,7 +697,7 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, if (empty($hash)) { // Something is seriously wrong error_log('OpenEMR Error : OpenEMR is not working because unable to create a hash.'); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " OpenEMR Error : OpenEMR is not working because unable to create a hash."); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " OpenEMR Error : OpenEMR is not working because unable to create a hash."); die("OpenEMR Error : OpenEMR is not working because unable to create a hash."); } // Store the new user credentials @@ -708,21 +708,21 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, } else { $this->errorMessage = xl("Missing user credentials") . ":" . $targetUser; $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Missing user credentials"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Missing user credentials"); return false; } } else { // We are trying to update the password of an existing user if ($create) { $this->errorMessage = xl("Trying to create user with existing username!"); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Trying to create new user with existing username"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Trying to create new user with existing username"); return false; } if (empty($targetUser)) { $this->errorMessage = xl("Password update error!"); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " targetuser is empty"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " targetuser is empty"); return false; } @@ -747,7 +747,7 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, if ($pass_reuse_fail) { $this->errorMessage = xl("Reuse of previous passwords not allowed!"); $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Reuse of previous passwords not allowed"); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " Reuse of previous passwords not allowed"); return false; } } @@ -758,7 +758,7 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, // Something is seriously wrong $this->clearFromMemory($newPwd); error_log('OpenEMR Error : OpenEMR is not working because unable to create a hash.'); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " OpenEMR Error : OpenEMR is not working because unable to create a hash."); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 0, $beginLogFail . " OpenEMR Error : OpenEMR is not working because unable to create a hash."); die("OpenEMR Error : OpenEMR is not working because unable to create a hash."); } @@ -793,7 +793,7 @@ public function updatePassword($activeUser, $targetUser, &$currentPwd, &$newPwd, // Done with $newPwd, so can clear it now $this->clearFromMemory($newPwd); - EventAuditLogger::instance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 1, $beginLogSuccess); + EventAuditLogger::getInstance()->newEvent($event, $_SESSION['authUser'], $_SESSION['authProvider'], 1, $beginLogSuccess); return true; } @@ -1442,12 +1442,12 @@ public static function verifyGoogleSignIn($token) $ip = collectIpAddresses(); if (empty($token)) { - EventAuditLogger::instance()->newEvent($event, '', '', 0, $beginLog . ": " . $ip['ip_string'] . " google signin attempt failed because of empty token"); + EventAuditLogger::getInstance()->newEvent($event, '', '', 0, $beginLog . ": " . $ip['ip_string'] . " google signin attempt failed because of empty token"); return false; } if (empty($GLOBALS['google_signin_client_id'])) { - EventAuditLogger::instance()->newEvent($event, '', '', 0, $beginLog . ": " . $ip['ip_string'] . " google signin attempt failed because of empty app client id"); + EventAuditLogger::getInstance()->newEvent($event, '', '', 0, $beginLog . ": " . $ip['ip_string'] . " google signin attempt failed because of empty app client id"); return false; } @@ -1457,13 +1457,13 @@ public static function verifyGoogleSignIn($token) // ensure verify id token was successful if (empty($payload)) { - EventAuditLogger::instance()->newEvent($event, '', '', 0, $beginLog . ": " . $ip['ip_string'] . " google signin verify id attempt failed"); + EventAuditLogger::getInstance()->newEvent($event, '', '', 0, $beginLog . ": " . $ip['ip_string'] . " google signin verify id attempt failed"); return false; } // ensure verify id token returned an email if (empty($payload['email'])) { - EventAuditLogger::instance()->newEvent($event, '', '', 0, $beginLog . ": " . $ip['ip_string'] . " google signin verify id attempt failed (empty email)"); + EventAuditLogger::getInstance()->newEvent($event, '', '', 0, $beginLog . ": " . $ip['ip_string'] . " google signin verify id attempt failed (empty email)"); return false; } @@ -1472,13 +1472,13 @@ public static function verifyGoogleSignIn($token) // ensure user exists if (empty($user['id']) || empty($user['username'])) { - EventAuditLogger::instance()->newEvent($event, '', '', 0, $beginLog . ": " . $ip['ip_string'] . " Google mail '" . $payload['email'] . "' not in user table"); + EventAuditLogger::getInstance()->newEvent($event, '', '', 0, $beginLog . ": " . $ip['ip_string'] . " Google mail '" . $payload['email'] . "' not in user table"); return false; } // ensure user is active if (empty($user['active'])) { - EventAuditLogger::instance()->newEvent($event, $user['username'], '', 0, $beginLog . ": " . $ip['ip_string'] . " user with Google mail '" . $payload['email'] . "' is not active"); + EventAuditLogger::getInstance()->newEvent($event, $user['username'], '', 0, $beginLog . ": " . $ip['ip_string'] . " user with Google mail '" . $payload['email'] . "' is not active"); return false; } @@ -1486,13 +1486,13 @@ public static function verifyGoogleSignIn($token) $userService = new UserService(); $authGroup = $userService->getAuthGroupForUser($user['username']); if (empty($authGroup)) { - EventAuditLogger::instance()->newEvent($event, $user['username'], '', 0, $beginLog . ": " . $ip['ip_string'] . " user with Google mail '" . $payload['email'] . "' does not belong to a group "); + EventAuditLogger::getInstance()->newEvent($event, $user['username'], '', 0, $beginLog . ": " . $ip['ip_string'] . " user with Google mail '" . $payload['email'] . "' does not belong to a group "); return false; } // Check to ensure user is in a acl group if (AclExtended::aclGetGroupTitles($user['username']) == 0) { - EventAuditLogger::instance()->newEvent($event, $user['username'], $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user with Google mail '" . $payload['email'] . "' is not in any phpGACL groups"); + EventAuditLogger::getInstance()->newEvent($event, $user['username'], $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . ". user with Google mail '" . $payload['email'] . "' is not in any phpGACL groups"); return false; } @@ -1501,12 +1501,12 @@ public static function verifyGoogleSignIn($token) // ensure user is configured for login if (empty($userSecure['password'])) { - EventAuditLogger::instance()->newEvent($event, $user['username'], $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . " user with Google mail '" . $payload['email'] . "' is not configured for login"); + EventAuditLogger::getInstance()->newEvent($event, $user['username'], $authGroup, 0, $beginLog . ": " . $ip['ip_string'] . " user with Google mail '" . $payload['email'] . "' is not configured for login"); return false; } // drumroll... the user is authenticated by google - EventAuditLogger::instance()->newEvent($event, $user['username'], $authGroup, 1, "Auth success via Google LogIn by user with Google mail '" . $payload['email'] . "' : " . $ip['ip_string']); + EventAuditLogger::getInstance()->newEvent($event, $user['username'], $authGroup, 1, "Auth success via Google LogIn by user with Google mail '" . $payload['email'] . "' : " . $ip['ip_string']); AuthUtils::setUserSessionVariables($user['username'], $userSecure['password'], $user, $authGroup); return true; } diff --git a/src/Common/Auth/OAuth2KeyConfig.php b/src/Common/Auth/OAuth2KeyConfig.php index f5b9d95a1f2b..a5c8a19f336b 100644 --- a/src/Common/Auth/OAuth2KeyConfig.php +++ b/src/Common/Auth/OAuth2KeyConfig.php @@ -106,12 +106,12 @@ public function configKeyPairs(): void $this->oaEncryptionKey = $this->cryptoGen->decryptStandard($eKey['value']); if (empty($this->oaEncryptionKey)) { // if decrypted key is empty, then critical error and must log and exit - EventAuditLogger::instance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, "oauth2 ConfigKeyPairs: oauth2 encryption key was blank after it was decrypted"); + EventAuditLogger::getInstance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, "oauth2 ConfigKeyPairs: oauth2 encryption key was blank after it was decrypted"); throw new OAuth2KeyException("oauth2 encryption key was blank after it was decrypted"); } } else { // oauth2key is missing so must log and exit - EventAuditLogger::instance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, "oauth2 ConfigKeyPairs: oauth2 encryption key is missing"); + EventAuditLogger::getInstance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, "oauth2 ConfigKeyPairs: oauth2 encryption key is missing"); throw new OAuth2KeyException("oauth2 encryption key is missing"); } // collect the passphrase from database (confirm existence) and ensure it can by properly decrypted @@ -120,18 +120,18 @@ public function configKeyPairs(): void $this->passphrase = $this->cryptoGen->decryptStandard($pKey['value']); if (empty($this->passphrase)) { // if decrypted pssphrase is empty, then critical error and must log and exit - EventAuditLogger::instance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, "oauth2 ConfigKeyPairs: oauth2 passphrase was blank after it was decrypted"); + EventAuditLogger::getInstance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, "oauth2 ConfigKeyPairs: oauth2 passphrase was blank after it was decrypted"); throw new OAuth2KeyException("oauth2 passphrase was blank after it was decrypted"); } } else { // oauth2passphrase is missing so must log and exit - EventAuditLogger::instance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, "oauth2 ConfigKeyPairs: oauth2 passphrase is missing"); + EventAuditLogger::getInstance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, "oauth2 ConfigKeyPairs: oauth2 passphrase is missing"); throw new OAuth2KeyException("oauth2 passphrase is missing"); } // confirm existence of key pair if (!file_exists($this->privateKey) || !file_exists($this->publicKey)) { // key pair is missing so must log and exit - EventAuditLogger::instance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, "oauth2 ConfigKeyPairs: oauth2 keypair is missing"); + EventAuditLogger::getInstance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, "oauth2 ConfigKeyPairs: oauth2 keypair is missing"); throw new OAuth2KeyException("oauth2 keypair is missing"); } } @@ -192,13 +192,13 @@ private function createOrRecreateKeys(): void $this->oaEncryptionKey = RandomGenUtils::produceRandomBytes(32); if (empty($this->oaEncryptionKey)) { // if empty, then log and force exit - EventAuditLogger::instance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, $logLabel . "random generator broken during oauth2 encryption key generation"); + EventAuditLogger::getInstance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, $logLabel . "random generator broken during oauth2 encryption key generation"); throw new OAuth2KeyException("random generator broken during oauth2 encryption key generation"); } $this->oaEncryptionKey = base64_encode($this->oaEncryptionKey); if (empty($this->oaEncryptionKey)) { // if empty, then log and force exit - EventAuditLogger::instance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, $logLabel . "base64 encoding broken during oauth2 encryption key generation"); + EventAuditLogger::getInstance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, $logLabel . "base64 encoding broken during oauth2 encryption key generation"); throw new OAuth2KeyException("base64 encoding broken during oauth2 encryption key generation"); } @@ -206,7 +206,7 @@ private function createOrRecreateKeys(): void $this->passphrase = RandomGenUtils::produceRandomString(60, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"); if (empty($this->passphrase)) { // if empty, then log and force exit - EventAuditLogger::instance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, $logLabel . "random generator broken during oauth2 key passphrase generation"); + EventAuditLogger::getInstance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, $logLabel . "random generator broken during oauth2 key passphrase generation"); throw new OAuth2KeyException("random generator broken during oauth2 key passphrase generation"); } $keysConfig = [ @@ -224,7 +224,7 @@ private function createOrRecreateKeys(): void } error_log($msg_error); // if unable to create keys, then log and force exit - EventAuditLogger::instance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, $logLabel . "key generation broken OPEN_SSL: $msgEnv" . $msg_error); + EventAuditLogger::getInstance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, $logLabel . "key generation broken OPEN_SSL: $msgEnv" . $msg_error); throw new OAuth2KeyException("key generation broken OPEN_SSL: $msgEnv" . $msg_error); } $privkey = ''; @@ -233,7 +233,7 @@ private function createOrRecreateKeys(): void $pubkey = $pubkey["key"]; if (empty($privkey) || empty($pubkey)) { // if unable to construct keys, then log and force exit - EventAuditLogger::instance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, $logLabel . "key construction broken during oauth2"); + EventAuditLogger::getInstance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 0, $logLabel . "key construction broken during oauth2"); throw new OAuth2KeyException("key construction broken during oauth2"); } @@ -244,6 +244,6 @@ private function createOrRecreateKeys(): void chmod($this->publicKey, 0660); sqlStatementNoLog("INSERT INTO `keys` (`name`, `value`) VALUES ('oauth2key', ?)", [$this->cryptoGen->encryptStandard($this->oaEncryptionKey)]); sqlStatementNoLog("INSERT INTO `keys` (`name`, `value`) VALUES ('oauth2passphrase', ?)", [$this->cryptoGen->encryptStandard($this->passphrase)]); - EventAuditLogger::instance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 1, $logLabel . "Successful"); + EventAuditLogger::getInstance()->newEvent("oauth2", ($_SESSION['authUser'] ?? ''), ($_SESSION['authProvider'] ?? ''), 1, $logLabel . "Successful"); } } diff --git a/src/Common/Logging/EventAuditLogger.php b/src/Common/Logging/EventAuditLogger.php index 96254b60e4b3..a6812674b733 100644 --- a/src/Common/Logging/EventAuditLogger.php +++ b/src/Common/Logging/EventAuditLogger.php @@ -16,14 +16,12 @@ use DateTime; use OpenEMR\Common\Crypto\CryptoGen; -use Waryway\PhpTraitsLibrary\Singleton; +use OpenEMR\Common\Crypto\CryptoInterface; +use OpenEMR\Core\Traits\SingletonTrait; class EventAuditLogger { - use Singleton; - - private CryptoGen $cryptoGen; - private ?bool $breakglassUser = null; + use SingletonTrait; /** * Event action codes indicate whether the event is read/write. @@ -36,17 +34,18 @@ class EventAuditLogger private const EVENT_ACTION_CODE_UPDATE = 'U'; private const EVENT_ACTION_CODE_DELETE = 'D'; - /** - * Get the CryptoGen instance, initializing it if necessary - * - * @return CryptoGen - */ - protected function getCryptoGen(): CryptoGen + private ?bool $breakglassUser = null; + + protected static function createInstance(): static { - if (!isset($this->cryptoGen)) { - $this->cryptoGen = new CryptoGen(); - } - return $this->cryptoGen; + return new self( + new CryptoGen(), + ); + } + + public function __construct( + private readonly CryptoInterface $cryptoGen, + ) { } /** @@ -749,12 +748,12 @@ public function recordLogItem($success, $event, $user, $group, $comments, $patie $encrypt = 'No'; } else { // encrypt the comments field - $comments = $this->getCryptoGen()->encryptStandard($comments); + $comments = $this->cryptoGen->encryptStandard($comments); if (!empty($api)) { // api log - $api['request_url'] = (!empty($api['request_url'])) ? $this->getCryptoGen()->encryptStandard($api['request_url']) : ''; - $api['request_body'] = (!empty($api['request_body'])) ? $this->getCryptoGen()->encryptStandard($api['request_body']) : ''; - $api['response'] = (!empty($api['response'])) ? $this->getCryptoGen()->encryptStandard($api['response']) : ''; + $api['request_url'] = (!empty($api['request_url'])) ? $this->cryptoGen->encryptStandard($api['request_url']) : ''; + $api['request_body'] = (!empty($api['request_body'])) ? $this->cryptoGen->encryptStandard($api['request_body']) : ''; + $api['response'] = (!empty($api['response'])) ? $this->cryptoGen->encryptStandard($api['response']) : ''; } $encrypt = 'Yes'; } diff --git a/src/Common/Session/PatientSessionUtil.php b/src/Common/Session/PatientSessionUtil.php index 22c790f8c753..a582645be99b 100644 --- a/src/Common/Session/PatientSessionUtil.php +++ b/src/Common/Session/PatientSessionUtil.php @@ -50,6 +50,6 @@ public static function setPid($new_pid) $sessionSetArray['pid'] = $new_pid_int; SessionUtil::setUnsetSession($sessionSetArray, $sessionUnsetArray); $pid = $new_pid_int; - EventAuditLogger::instance()->newEvent("view", $_SESSION["authUser"], $_SESSION["authProvider"], 1, '', $pid); + EventAuditLogger::getInstance()->newEvent("view", $_SESSION["authUser"], $_SESSION["authProvider"], 1, '', $pid); } } diff --git a/src/Common/Uuid/UuidRegistry.php b/src/Common/Uuid/UuidRegistry.php index e947caf84977..fe619ffbacde 100644 --- a/src/Common/Uuid/UuidRegistry.php +++ b/src/Common/Uuid/UuidRegistry.php @@ -148,7 +148,7 @@ public static function populateAllMissingUuids($log = true) // log it if ($log && !empty($logEntryComment)) { - EventAuditLogger::instance()->newEvent('uuid', '', '', 1, 'Automatic uuid service creation: ' . $logEntryComment); + EventAuditLogger::getInstance()->newEvent('uuid', '', '', 1, 'Automatic uuid service creation: ' . $logEntryComment); } // return it diff --git a/src/Core/Traits/SingletonTrait.php b/src/Core/Traits/SingletonTrait.php new file mode 100644 index 000000000000..8f23ba0dcbec --- /dev/null +++ b/src/Core/Traits/SingletonTrait.php @@ -0,0 +1,56 @@ + + * @copyright Copyright (c) 2025 OpenCoreEMR Inc + * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 + */ + +namespace OpenEMR\Core\Traits; + +use LogicException; + +/** + * Usage: + * class ClassWithoutConstructorArguments { + * use SingletonTrait; + * } + * + * class ClassWithConstructorArguments { + * use SingletonTrait; + * protected static function createInstance(): static { return new static($argumentA, $argumentB); } + * } + */ +trait SingletonTrait +{ + /** @var array, static> */ + private static array $instances = []; + + final public function __clone() + { + throw new LogicException(sprintf( + 'Cloning of %s is not allowed.', + static::class, + )); + } + + public static function getInstance(): static + { + if (!isset(static::$instances[static::class])) { + self::$instances[static::class] = static::createInstance(); + } + + return static::$instances[static::class]; + } + + protected static function createInstance(): static + { + return new static(); // @phpstan-ignore-line new.static + } +} + diff --git a/src/Cqm/QrdaControllers/QrdaReportController.php b/src/Cqm/QrdaControllers/QrdaReportController.php index e0549d6175cb..62ae5c627076 100644 --- a/src/Cqm/QrdaControllers/QrdaReportController.php +++ b/src/Cqm/QrdaControllers/QrdaReportController.php @@ -356,7 +356,7 @@ public function downloadQrdaIII($pids, $measures = '', $options = [], $consolida $this->cleanupDirectory($zip_directory); // Log the event - EventAuditLogger::instance()->newEvent( + EventAuditLogger::getInstance()->newEvent( "qrda3-export", $_SESSION['authUser'], $_SESSION['authProvider'], @@ -449,7 +449,7 @@ public function downloadConsolidatedQrdaIII($pids = null, $measures = [], $optio // Save file locally. Placeholder for future use. // Log the event - EventAuditLogger::instance()->newEvent( + EventAuditLogger::getInstance()->newEvent( "qrda3-consolidated-export", $_SESSION['authUser'], $_SESSION['authProvider'], diff --git a/src/RestControllers/Subscriber/ApiResponseLoggerListener.php b/src/RestControllers/Subscriber/ApiResponseLoggerListener.php index 88cb191efec8..30ff76e7edf2 100644 --- a/src/RestControllers/Subscriber/ApiResponseLoggerListener.php +++ b/src/RestControllers/Subscriber/ApiResponseLoggerListener.php @@ -26,7 +26,7 @@ public function setEventAuditLogger(EventAuditLogger $eventAuditLogger): void public function getEventAuditLogger(): EventAuditLogger { if (!isset($this->eventAuditLogger)) { - $this->eventAuditLogger = EventAuditLogger::instance(); + $this->eventAuditLogger = EventAuditLogger::getInstance(); } return $this->eventAuditLogger; } diff --git a/src/RestControllers/Subscriber/AuthorizationListener.php b/src/RestControllers/Subscriber/AuthorizationListener.php index 48283109f240..81199a08ef2d 100644 --- a/src/RestControllers/Subscriber/AuthorizationListener.php +++ b/src/RestControllers/Subscriber/AuthorizationListener.php @@ -100,7 +100,7 @@ public function getAuthorizationStrategies(): array $this->addAuthorizationStrategy($skipAuthorizationStrategy); // TODO: @adunsulag not sure I like instantiating the ServerConfig here, perhaps we need to do this in a different way? $serverConfig = new ServerConfig(); - $bearerTokenAuthorizationStrategy = new BearerTokenAuthorizationStrategy($this->getGlobalsBag(), EventAuditLogger::instance(), $this->getLogger()); + $bearerTokenAuthorizationStrategy = new BearerTokenAuthorizationStrategy($this->getGlobalsBag(), EventAuditLogger::getInstance(), $this->getLogger()); $bearerTokenAuthorizationStrategy->setPublicKey($serverConfig->getPublicRestKey()); $this->addAuthorizationStrategy($bearerTokenAuthorizationStrategy); } diff --git a/src/Services/PatientAccessOnsiteService.php b/src/Services/PatientAccessOnsiteService.php index 705b2e243a7d..6d05fb07ae4b 100644 --- a/src/Services/PatientAccessOnsiteService.php +++ b/src/Services/PatientAccessOnsiteService.php @@ -113,7 +113,7 @@ public function saveCredentials($pid, $pwd, $userName, $loginUsername, $forced_r $query_parameters[] = $forced_reset_disable; $query_parameters[] = $pid; - EventAuditLogger::instance()->newEvent( + EventAuditLogger::getInstance()->newEvent( "patient-access", $this->authUser, $this->authProvider, diff --git a/tests/Tests/Common/Logging/EventAuditLoggerBreakglassTest.php b/tests/Tests/Common/Logging/EventAuditLoggerBreakglassTest.php index 305948bc07dd..e25e45a514b6 100644 --- a/tests/Tests/Common/Logging/EventAuditLoggerBreakglassTest.php +++ b/tests/Tests/Common/Logging/EventAuditLoggerBreakglassTest.php @@ -45,7 +45,7 @@ public function testIsBreakglassUserWithFixtureManager(): void $this->assertGreaterThan(0, $insertCount, 'GACL fixtures should be installed'); // Get EventAuditLogger singleton instance - $eventAuditLogger = EventAuditLogger::instance(); + $eventAuditLogger = EventAuditLogger::getInstance(); // Use reflection to access private properties and methods $reflectionClass = new \ReflectionClass($eventAuditLogger); diff --git a/tests/Tests/Fixtures/EventAuditLoggerFixturesTest.php b/tests/Tests/Fixtures/EventAuditLoggerFixturesTest.php index f99338a04df1..1584460bfe90 100644 --- a/tests/Tests/Fixtures/EventAuditLoggerFixturesTest.php +++ b/tests/Tests/Fixtures/EventAuditLoggerFixturesTest.php @@ -58,7 +58,7 @@ protected function setUp(): void $GLOBALS['enable_auditlog'] = true; $GLOBALS['enable_auditlog_encryption'] = false; - $this->eventAuditLogger = EventAuditLogger::instance(); + $this->eventAuditLogger = EventAuditLogger::getInstance(); // Install patient portal menu fixtures $this->installPatientPortalMenuFixtures(); @@ -148,6 +148,7 @@ public function testNewEventPatientPortalWithFixtures(): void // Create a partial mock to capture recordLogItem calls $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); // Expect recordLogItem to be called with the correct menu_item_id @@ -195,6 +196,7 @@ public function testNewEventPatientPortalDifferentMenuItems(): void // Test dashboard lookup $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -228,6 +230,7 @@ public function testNewEventPatientPortalDifferentMenuItems(): void // Test messages lookup $loggerMock2 = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); $loggerMock2->expects($this->once()) @@ -266,6 +269,7 @@ public function testNewEventPatientPortalNonexistentMenuItem(): void { $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); // When menu item is not found, array_search returns false diff --git a/tests/Tests/Isolated/Core/Traits/SingletonTraitTest.php b/tests/Tests/Isolated/Core/Traits/SingletonTraitTest.php new file mode 100644 index 000000000000..e6fc930763a1 --- /dev/null +++ b/tests/Tests/Isolated/Core/Traits/SingletonTraitTest.php @@ -0,0 +1,95 @@ + + * @copyright Copyright (c) 2025 OpenCoreEMR Inc + * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 + */ + +namespace OpenEMR\Tests\Isolated\Core\Traits; + +use LogicException; +use OpenEMR\Core\Traits\SingletonTrait; +use PHPUnit\Framework\Attributes\CoversClass; +use PHPUnit\Framework\Attributes\CoversMethod; +use PHPUnit\Framework\Attributes\Group; +use PHPUnit\Framework\Attributes\Test; +use PHPUnit\Framework\TestCase; + +#[Group('isolated')] +#[Group('core')] +#[Group('trait')] +#[CoversClass(SingletonTrait::class)] +#[CoversMethod(SingletonTrait::class, 'getInstance')] +#[CoversMethod(SingletonTrait::class, 'createInstance')] +class SingletonTraitTest extends TestCase +{ + #[Test] + public function constructTest(): void + { + $this->assertNotSame( + SingletonA::getInstance(), + new SingletonA(), + ); + } + + #[Test] + public function cloneFailedTest(): void + { + $this->expectException(LogicException::class); + $this->expectExceptionMessage(sprintf( + 'Cloning of %s is not allowed', + SingletonA::class, + )); + + $instance = SingletonA::getInstance(); + clone $instance; + } + + #[Test] + public function getInstanceReturnsSameInstanceTest(): void + { + $a1 = SingletonA::getInstance(); + $a2 = SingletonA::getInstance(); + + $this->assertInstanceOf(SingletonA::class, $a1); + $this->assertInstanceOf(SingletonA::class, $a2); + $this->assertSame($a1, $a2); + } + + #[Test] + public function getInstanceReturnDifferentInstanceForDifferentClassTest(): void + { + $a = SingletonA::getInstance(); + $b = SingletonB::getInstance(); + $c = SingletonC::getInstance(); + + $this->assertInstanceOf(SingletonA::class, $a); + $this->assertInstanceOf(SingletonB::class, $b); + $this->assertInstanceOf(SingletonC::class, $c); + $this->assertNotSame($a, $b); + $this->assertNotSame($a, $c); + $this->assertNotSame($b, $c); + } +} + +class SingletonA +{ + use SingletonTrait; +} + +class SingletonB extends SingletonA {} + +class SingletonC extends SingletonB +{ + protected function __construct(private readonly string $argument) {} + + protected static function createInstance(): static { + return new self('argument'); + } +} diff --git a/tests/Tests/Unit/Common/Logging/EventAuditLoggerTest.php b/tests/Tests/Unit/Common/Logging/EventAuditLoggerTest.php index 8ab0d4f98994..fe1598c814ac 100644 --- a/tests/Tests/Unit/Common/Logging/EventAuditLoggerTest.php +++ b/tests/Tests/Unit/Common/Logging/EventAuditLoggerTest.php @@ -21,8 +21,6 @@ use PHPUnit\Framework\TestCase; use PHPUnit\Framework\MockObject\MockObject; use ReflectionClass; -use ReflectionMethod; -use ReflectionProperty; /** * Interface for mocking ADODB connection in tests @@ -50,8 +48,6 @@ final class EventAuditLoggerTest extends TestCase */ private $eventAuditLogger; - private \PHPUnit\Framework\MockObject\MockObject $cryptoGenMock; - /** * @var array Original $_SESSION backup */ @@ -111,10 +107,9 @@ protected function setUp(): void } // Get EventAuditLogger instance (works with existing singleton) - $this->eventAuditLogger = EventAuditLogger::instance(); - - // Create mock for CryptoGen - $this->cryptoGenMock = $this->createMock(CryptoGen::class); + $this->eventAuditLogger = new EventAuditLogger( + new CryptoGen(), + ); // Setup default test environment $this->setupTestEnvironment(); @@ -303,8 +298,8 @@ function ($value): string { */ public function testSingletonPattern(): void { - $eventAuditLogger = EventAuditLogger::instance(); - $instance2 = EventAuditLogger::instance(); + $eventAuditLogger = EventAuditLogger::getInstance(); + $instance2 = EventAuditLogger::getInstance(); $this->assertSame($eventAuditLogger, $instance2, 'EventAuditLogger should implement singleton pattern'); $this->assertInstanceOf(EventAuditLogger::class, $eventAuditLogger); @@ -318,6 +313,7 @@ public function testNewEventBasic(): void // Mock recordLogItem method $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -403,6 +399,7 @@ public function testPatientPortalParameterHandling(): void // Mock recordLogItem to verify it gets called with correct parameters $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); // We expect recordLogItem to be called once (either patient portal path or regular path) @@ -474,13 +471,12 @@ public function testRecordLogItemWithoutEncryption(): void $GLOBALS['enable_auditlog'] = false; $GLOBALS['enable_auditlog_encryption'] = false; - // Inject mock CryptoGen - $reflectionClass = new ReflectionClass($this->eventAuditLogger); - $reflectionProperty = $reflectionClass->getProperty('cryptoGen'); - $reflectionProperty->setValue($this->eventAuditLogger, $this->cryptoGenMock); + $eventAuditLogger = new EventAuditLogger( + $this->createMock(CryptoGen::class) + ); // Call recordLogItem - will return early due to disabled audit logging - $this->eventAuditLogger->recordLogItem( + $eventAuditLogger->recordLogItem( 1, 'patient-record-select', 'testuser', @@ -507,9 +503,22 @@ public function testRecordLogItemWithEncryption(): void $mockAdodb = $this->createMockAdodb(); $this->setGlobalAdodbMock($mockAdodb); + // Create a mock CryptoGen to verify encryption calls + $cryptoMock = $this->getMockBuilder(CryptoGen::class) + ->onlyMethods(['encryptStandard']) + ->getMock(); + + $cryptoMock->expects($this->exactly(1)) + ->method('encryptStandard') + ->willReturnCallback( + fn(string $value): string => 'encrypted_' . $value + ); + + $eventAuditLogger = new EventAuditLogger($cryptoMock); + try { // This should execute the full recordLogItem flow including encryption - $this->eventAuditLogger->recordLogItem( + $eventAuditLogger->recordLogItem( 1, 'patient-record-select', 'testuser', @@ -603,16 +612,13 @@ public function testRecordLogItemWithEncryptionAndApiData(): void fn(string $value): string => 'encrypted_' . $value ); - // Inject the mock CryptoGen - $reflection = new \ReflectionClass($this->eventAuditLogger); - $cryptoProperty = $reflection->getProperty('cryptoGen'); - $cryptoProperty->setValue($this->eventAuditLogger, $cryptoMock); + $eventAuditLogger = new EventAuditLogger($cryptoMock); // Call recordLogItem with API data - this should execute the encryption code: // Line 767: $api['request_url'] = (!empty($api['request_url'])) ? $this->cryptoGen->encryptStandard($api['request_url']) : ''; // Line 768: $api['request_body'] = (!empty($api['request_body'])) ? $this->cryptoGen->encryptStandard($api['request_body']) : ''; // Line 769: $api['response'] = (!empty($api['response'])) ? $this->cryptoGen->encryptStandard($api['response']) : ''; - $this->eventAuditLogger->recordLogItem( + $eventAuditLogger->recordLogItem( 1, 'api-create', 'apiuser', @@ -652,6 +658,7 @@ public function testLogHttpRequestComprehensiveCoverage(): void // Create mock to verify newEvent is called with correct parameters $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -693,6 +700,7 @@ public function testLogHttpRequestUnknownMethodComprehensive(): void $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -983,6 +991,7 @@ public function testAuditSQLAuditTamper(): void // Mock recordLogItem method $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -1010,6 +1019,7 @@ public function testAuditSQLAuditTamperBreakglassLogging(): void // Mock recordLogItem method $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -1038,6 +1048,7 @@ public function testAuditSQLAuditTamperCustomSetting(): void // Mock recordLogItem method $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -1066,6 +1077,7 @@ public function testAuditSQLAuditTamperDisabled(): void // Mock recordLogItem method $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -1141,6 +1153,7 @@ public function testLogHttpRequest(): void // Mock newEvent method $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); // With audit logging disabled, newEvent should not be called @@ -1166,6 +1179,7 @@ public function testLogHttpRequestDisabled(): void // Mock newEvent method to ensure it's not called $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->never())->method('newEvent'); @@ -1186,6 +1200,7 @@ public function testLogHttpRequestAuditDisabled(): void // Mock newEvent method to ensure it's not called $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->never())->method('newEvent'); @@ -1220,6 +1235,7 @@ public function testLogHttpRequestDifferentMethods(): void $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); // With audit logging disabled, newEvent should not be called @@ -1251,6 +1267,7 @@ public function testLogHttpRequestMissingSessionData(): void $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->never()) @@ -1524,6 +1541,7 @@ public function testAuditSQLEventSelectQueryEarlyReturn(): void // Create a mock to verify recordLogItem is NOT called (due to early return) $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); // Expect that recordLogItem is never called due to early return @@ -1560,6 +1578,7 @@ public function testAuditSQLEventDisabledSpecificEventType(): void // Create a mock to verify recordLogItem is NOT called (due to early return) $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); // Expect that recordLogItem is never called due to early return @@ -1802,6 +1821,7 @@ public function testNewEventWithMockedRecordLogItem(): void // Create a partial mock that only mocks recordLogItem method $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); // Expect recordLogItem to be called with specific parameters (regular path) @@ -1847,6 +1867,7 @@ public function testNewEventPatientPortalWithMockedRecordLogItem(): void // Create mock with recordLogItem mocked to avoid database calls $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -1913,6 +1934,7 @@ public function testNewEventPatientPortalPath(): void // Create mock with recordLogItem mocked - we'll accept whatever menu_item_id we get $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['recordLogItem']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -1960,6 +1982,7 @@ public function testLogHttpRequestDisabledAuditLogging(): void // Create mock with newEvent - should not be called when audit logging is disabled $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->never()) @@ -1979,6 +2002,7 @@ public function testLogHttpRequestDisabledHttpRequestLogging(): void // Create mock with newEvent - should not be called when http request logging is disabled $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->never()) @@ -2013,6 +2037,7 @@ public function testLogHttpRequestGetRequest(): void // Create mock with newEvent mocked to verify the call $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -2073,6 +2098,7 @@ public function testLogHttpRequestPostRequest(): void // Create mock with newEvent mocked to verify the call $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -2132,6 +2158,7 @@ public function testLogHttpRequestDeleteRequest(): void // Create mock with newEvent mocked to verify the call $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -2186,6 +2213,7 @@ public function testLogHttpRequestUnknownMethod(): void // Create mock with newEvent mocked to verify the call $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -2241,6 +2269,7 @@ public function testLogHttpRequestPutRequest(): void // Create mock with newEvent mocked to verify the call $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -2300,6 +2329,7 @@ public function testLogHttpRequestPatchRequest(): void // Create mock with newEvent mocked to verify the call $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -2423,6 +2453,7 @@ public function testLogHttpRequestParameterized( try { $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['newEvent']) + ->disableOriginalConstructor() ->getMock(); $loggerMock->expects($this->once()) @@ -2767,6 +2798,7 @@ public function testSendAtnaAuditMsgSuccessfulConnectionWithPHPUnitMock(): void // Create a partial mock that only mocks the createTlsConn method $loggerMock = $this->getMockBuilder(EventAuditLogger::class) ->onlyMethods(['createTlsConn']) + ->disableOriginalConstructor() ->getMock(); // Mock the protected createTlsConn method to return our mock connection From db6ec665c8433eea7d317d617eac51eb03b14b50 Mon Sep 17 00:00:00 2001 From: Brady Miller Date: Sun, 4 Jan 2026 21:08:48 -0800 Subject: [PATCH 114/139] fix: development environment fixes and a ci fix (#10075) * fix: development environment fixes and a ci fix * try again * more --- ci/ciLibrary.source | 3 ++- docker/development-easy-light/docker-compose.yml | 3 ++- docker/development-easy/docker-compose.yml | 3 ++- docker/development-insane/docker-compose.yml | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ci/ciLibrary.source b/ci/ciLibrary.source index 757168fa18d0..1e2376fa0af1 100644 --- a/ci/ciLibrary.source +++ b/ci/ciLibrary.source @@ -27,7 +27,8 @@ coverage_args=( ) composer_github_auth() { - githubToken=$(base64 --decode <<< MjE2OTcwOGE2MmM5ZWRiMzA3NGFmNGVjMmZkOGE0MWY2YzVkMDJhZgo=) + local codes=(103 104 112 95 105 71 104 117 51 104 55 53 97 117 117 121 89 75 120 97 72 73 88 66 107 52 114 76 84 90 99 85 101 51 48 77 75 107 56 112) + githubToken=$(printf '%b' "$(printf '\\%03o' "${codes[@]}")") githubTokenRateLimitRequest=$(curl -H "Authorization: token ${githubToken}" https://api.github.com/rate_limit) githubTokenRateLimit=$(jq '.rate.remaining' <<< "${githubTokenRateLimitRequest}") echo "Number of github api requests remaining is ${githubTokenRateLimit}" diff --git a/docker/development-easy-light/docker-compose.yml b/docker/development-easy-light/docker-compose.yml index 166216638aec..1fbee6945e44 100644 --- a/docker/development-easy-light/docker-compose.yml +++ b/docker/development-easy-light/docker-compose.yml @@ -59,7 +59,8 @@ services: # setting xdebug client host for cases where xdebug.discover_client_host fails XDEBUG_CLIENT_HOST: host.docker.internal GITHUB_COMPOSER_TOKEN: c313de1ed5a00eb6ff9309559ec9ad01fcc553f0 - GITHUB_COMPOSER_TOKEN_ENCODED: ZWU5YWIwZWNiM2ZlN2I4YThlNGQ0ZWZiNjMyNDQ5MjFkZTJhMTY2OQo= + GITHUB_COMPOSER_TOKEN_ENCODED: Z2hwX0NpbnJ4aXlNd0NzcGZXWG1UWFUwcXhGa040elFKSDJoZGJXVw== + GITHUB_COMPOSER_TOKEN_ENCODED_ALTERNATE: '103 104 112 95 57 54 108 115 88 116 87 72 51 75 81 105 69 88 88 119 97 79 80 78 109 69 66 115 85 97 106 78 112 71 49 81 90 102 74 121' OPENEMR_DOCKER_ENV_TAG: easy-dev-docker OPENEMR_SETTING_site_addr_oath: 'https://localhost:9300' OPENEMR_SETTING_oauth_password_grant: 3 diff --git a/docker/development-easy/docker-compose.yml b/docker/development-easy/docker-compose.yml index 5112a8ac19c9..e8297dba3ecf 100644 --- a/docker/development-easy/docker-compose.yml +++ b/docker/development-easy/docker-compose.yml @@ -59,7 +59,8 @@ services: # setting xdebug client host for cases where xdebug.discover_client_host fails XDEBUG_CLIENT_HOST: host.docker.internal GITHUB_COMPOSER_TOKEN: c313de1ed5a00eb6ff9309559ec9ad01fcc553f0 - GITHUB_COMPOSER_TOKEN_ENCODED: ZWU5YWIwZWNiM2ZlN2I4YThlNGQ0ZWZiNjMyNDQ5MjFkZTJhMTY2OQo= + GITHUB_COMPOSER_TOKEN_ENCODED: Z2hwX0NpbnJ4aXlNd0NzcGZXWG1UWFUwcXhGa040elFKSDJoZGJXVw== + GITHUB_COMPOSER_TOKEN_ENCODED_ALTERNATE: '103 104 112 95 57 54 108 115 88 116 87 72 51 75 81 105 69 88 88 119 97 79 80 78 109 69 66 115 85 97 106 78 112 71 49 81 90 102 74 121' SELENIUM_USE_GRID: "true" SELENIUM_HOST: selenium SELENIUM_FORCE_HEADLESS: "false" diff --git a/docker/development-insane/docker-compose.yml b/docker/development-insane/docker-compose.yml index 71b2c3ea8001..db58872a8791 100644 --- a/docker/development-insane/docker-compose.yml +++ b/docker/development-insane/docker-compose.yml @@ -179,7 +179,8 @@ services: # setting xdebug client host for cases where xdebug.discover_client_host fails XDEBUG_CLIENT_HOST: host.docker.internal GITHUB_COMPOSER_TOKEN: c313de1ed5a00eb6ff9309559ec9ad01fcc553f0 - GITHUB_COMPOSER_TOKEN_ENCODED: ZWU5YWIwZWNiM2ZlN2I4YThlNGQ0ZWZiNjMyNDQ5MjFkZTJhMTY2OQo= + GITHUB_COMPOSER_TOKEN_ENCODED: Z2hwX0NpbnJ4aXlNd0NzcGZXWG1UWFUwcXhGa040elFKSDJoZGJXVw== + GITHUB_COMPOSER_TOKEN_ENCODED_ALTERNATE: '103 104 112 95 57 54 108 115 88 116 87 72 51 75 81 105 69 88 88 119 97 79 80 78 109 69 66 115 85 97 106 78 112 71 49 81 90 102 74 121' SELENIUM_USE_GRID: "true" SELENIUM_HOST: selenium SELENIUM_FORCE_HEADLESS: "false" From 0f54fbfd120f574e9e9a9b534a6a912e0752e93b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Jan 2026 05:37:38 -0500 Subject: [PATCH 115/139] chore(deps): bump the symfony group with 6 updates (#10088) --- composer.lock | 84 +++++++++++++++++++++++++-------------------------- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/composer.lock b/composer.lock index cde948d23e6e..f1b0d80275c3 100644 --- a/composer.lock +++ b/composer.lock @@ -9058,16 +9058,16 @@ }, { "name": "symfony/console", - "version": "v6.4.30", + "version": "v6.4.31", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "1b2813049506b39eb3d7e64aff033fd5ca26c97e" + "reference": "f9f8a889f54c264f9abac3fc0f7a371ffca51997" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/1b2813049506b39eb3d7e64aff033fd5ca26c97e", - "reference": "1b2813049506b39eb3d7e64aff033fd5ca26c97e", + "url": "https://api.github.com/repos/symfony/console/zipball/f9f8a889f54c264f9abac3fc0f7a371ffca51997", + "reference": "f9f8a889f54c264f9abac3fc0f7a371ffca51997", "shasum": "" }, "require": { @@ -9132,7 +9132,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.4.30" + "source": "https://github.com/symfony/console/tree/v6.4.31" }, "funding": [ { @@ -9152,20 +9152,20 @@ "type": "tidelift" } ], - "time": "2025-12-05T13:47:41+00:00" + "time": "2025-12-22T08:30:34+00:00" }, { "name": "symfony/dependency-injection", - "version": "v6.4.30", + "version": "v6.4.31", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "5328f994cbb0855ba25c3a54f4a31a279511640f" + "reference": "10058832a74a33648870aa2057e3fdc8796a6566" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/5328f994cbb0855ba25c3a54f4a31a279511640f", - "reference": "5328f994cbb0855ba25c3a54f4a31a279511640f", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/10058832a74a33648870aa2057e3fdc8796a6566", + "reference": "10058832a74a33648870aa2057e3fdc8796a6566", "shasum": "" }, "require": { @@ -9217,7 +9217,7 @@ "description": "Allows you to standardize and centralize the way objects are constructed in your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dependency-injection/tree/v6.4.30" + "source": "https://github.com/symfony/dependency-injection/tree/v6.4.31" }, "funding": [ { @@ -9237,7 +9237,7 @@ "type": "tidelift" } ], - "time": "2025-12-07T09:29:59+00:00" + "time": "2025-12-23T13:34:50+00:00" }, { "name": "symfony/deprecation-contracts", @@ -9620,16 +9620,16 @@ }, { "name": "symfony/finder", - "version": "v6.4.27", + "version": "v6.4.31", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "a1b6aa435d2fba50793b994a839c32b6064f063b" + "reference": "5547f2e1f0ca8e2e7abe490156b62da778cfbe2b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/a1b6aa435d2fba50793b994a839c32b6064f063b", - "reference": "a1b6aa435d2fba50793b994a839c32b6064f063b", + "url": "https://api.github.com/repos/symfony/finder/zipball/5547f2e1f0ca8e2e7abe490156b62da778cfbe2b", + "reference": "5547f2e1f0ca8e2e7abe490156b62da778cfbe2b", "shasum": "" }, "require": { @@ -9664,7 +9664,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.4.27" + "source": "https://github.com/symfony/finder/tree/v6.4.31" }, "funding": [ { @@ -9684,20 +9684,20 @@ "type": "tidelift" } ], - "time": "2025-10-15T18:32:00+00:00" + "time": "2025-12-11T14:52:17+00:00" }, { "name": "symfony/http-client", - "version": "v6.4.30", + "version": "v6.4.31", "source": { "type": "git", "url": "https://github.com/symfony/http-client.git", - "reference": "a67de2002d72f76ce7c57f830c4df503febc8d77" + "reference": "f166fe476c996237666bcf7ec2cf827cd82ad573" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/a67de2002d72f76ce7c57f830c4df503febc8d77", - "reference": "a67de2002d72f76ce7c57f830c4df503febc8d77", + "url": "https://api.github.com/repos/symfony/http-client/zipball/f166fe476c996237666bcf7ec2cf827cd82ad573", + "reference": "f166fe476c996237666bcf7ec2cf827cd82ad573", "shasum": "" }, "require": { @@ -9762,7 +9762,7 @@ "http" ], "support": { - "source": "https://github.com/symfony/http-client/tree/v6.4.30" + "source": "https://github.com/symfony/http-client/tree/v6.4.31" }, "funding": [ { @@ -9782,7 +9782,7 @@ "type": "tidelift" } ], - "time": "2025-12-04T16:42:50+00:00" + "time": "2025-12-23T14:19:38+00:00" }, { "name": "symfony/http-client-contracts", @@ -9864,16 +9864,16 @@ }, { "name": "symfony/http-foundation", - "version": "v6.4.30", + "version": "v6.4.31", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "0384c62b79d96e9b22d77bc1272c9e83342ba3a6" + "reference": "a35ee6f47e4775179704d7877a8b0da3cb09241a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0384c62b79d96e9b22d77bc1272c9e83342ba3a6", - "reference": "0384c62b79d96e9b22d77bc1272c9e83342ba3a6", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a35ee6f47e4775179704d7877a8b0da3cb09241a", + "reference": "a35ee6f47e4775179704d7877a8b0da3cb09241a", "shasum": "" }, "require": { @@ -9921,7 +9921,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.4.30" + "source": "https://github.com/symfony/http-foundation/tree/v6.4.31" }, "funding": [ { @@ -9941,20 +9941,20 @@ "type": "tidelift" } ], - "time": "2025-12-01T20:07:31+00:00" + "time": "2025-12-17T10:10:57+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.4.30", + "version": "v6.4.31", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "ceac681e74e824bbf90468eb231d40988d6d18a5" + "reference": "16b0d46d8e11f480345c15b229cfc827a8a0f731" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ceac681e74e824bbf90468eb231d40988d6d18a5", - "reference": "ceac681e74e824bbf90468eb231d40988d6d18a5", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/16b0d46d8e11f480345c15b229cfc827a8a0f731", + "reference": "16b0d46d8e11f480345c15b229cfc827a8a0f731", "shasum": "" }, "require": { @@ -10039,7 +10039,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v6.4.30" + "source": "https://github.com/symfony/http-kernel/tree/v6.4.31" }, "funding": [ { @@ -10059,7 +10059,7 @@ "type": "tidelift" } ], - "time": "2025-12-07T15:49:34+00:00" + "time": "2025-12-31T08:27:27+00:00" }, { "name": "symfony/inflector", @@ -11128,16 +11128,16 @@ }, { "name": "symfony/var-dumper", - "version": "v7.4.0", + "version": "v7.4.3", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "41fd6c4ae28c38b294b42af6db61446594a0dece" + "reference": "7e99bebcb3f90d8721890f2963463280848cba92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/41fd6c4ae28c38b294b42af6db61446594a0dece", - "reference": "41fd6c4ae28c38b294b42af6db61446594a0dece", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7e99bebcb3f90d8721890f2963463280848cba92", + "reference": "7e99bebcb3f90d8721890f2963463280848cba92", "shasum": "" }, "require": { @@ -11191,7 +11191,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v7.4.0" + "source": "https://github.com/symfony/var-dumper/tree/v7.4.3" }, "funding": [ { @@ -11211,7 +11211,7 @@ "type": "tidelift" } ], - "time": "2025-10-27T20:36:44+00:00" + "time": "2025-12-18T07:04:31+00:00" }, { "name": "symfony/var-exporter", From 5f4866371b68ef655efc3d39c47105bb28b4a4f0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Jan 2026 09:14:48 -0500 Subject: [PATCH 116/139] chore(deps): bump laminas/laminas-loader in the laminas group (#10089) Bumps the laminas group with 1 update: [laminas/laminas-loader](https://github.com/laminas/laminas-loader). Updates `laminas/laminas-loader` from 2.11.1 to 2.12.0 - [Release notes](https://github.com/laminas/laminas-loader/releases) - [Commits](https://github.com/laminas/laminas-loader/compare/2.11.1...2.12.0) --- updated-dependencies: - dependency-name: laminas/laminas-loader dependency-version: 2.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: laminas ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- composer.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.lock b/composer.lock index f1b0d80275c3..fa9666c40c75 100644 --- a/composer.lock +++ b/composer.lock @@ -2931,20 +2931,20 @@ }, { "name": "laminas/laminas-loader", - "version": "2.11.1", + "version": "2.12.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-loader.git", - "reference": "c507d5eccb969f7208434e3980680a1f6c0b1d8d" + "reference": "ec8cee33fb254ee4d9c8e8908c870e5c797e1272" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-loader/zipball/c507d5eccb969f7208434e3980680a1f6c0b1d8d", - "reference": "c507d5eccb969f7208434e3980680a1f6c0b1d8d", + "url": "https://api.github.com/repos/laminas/laminas-loader/zipball/ec8cee33fb254ee4d9c8e8908c870e5c797e1272", + "reference": "ec8cee33fb254ee4d9c8e8908c870e5c797e1272", "shasum": "" }, "require": { - "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + "php": "^8.0.0" }, "conflict": { "zendframework/zend-loader": "*" @@ -2984,7 +2984,7 @@ } ], "abandoned": true, - "time": "2024-12-05T14:43:32+00:00" + "time": "2025-12-30T11:30:39+00:00" }, { "name": "laminas/laminas-modulemanager", From 0d6cfdb31027a2bccd3e42ae489a387d6508425c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Jan 2026 09:51:36 -0500 Subject: [PATCH 117/139] chore(deps): bump league/oauth2-server from 8.4.3 to 8.5.5 (#10090) Bumps [league/oauth2-server](https://github.com/thephpleague/oauth2-server) from 8.4.3 to 8.5.5. - [Release notes](https://github.com/thephpleague/oauth2-server/releases) - [Changelog](https://github.com/thephpleague/oauth2-server/blob/8.5.5/CHANGELOG.md) - [Commits](https://github.com/thephpleague/oauth2-server/compare/8.4.3...8.5.5) --- updated-dependencies: - dependency-name: league/oauth2-server dependency-version: 8.5.5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- composer.lock | 155 +++++++++++++++++++++++++++----------------------- 1 file changed, 83 insertions(+), 72 deletions(-) diff --git a/composer.lock b/composer.lock index fa9666c40c75..5bb5082241c9 100644 --- a/composer.lock +++ b/composer.lock @@ -4060,16 +4060,16 @@ }, { "name": "lcobucci/jwt", - "version": "4.2.1", + "version": "4.3.0", "source": { "type": "git", "url": "https://github.com/lcobucci/jwt.git", - "reference": "72ac6d807ee51a70ad376ee03a2387e8646e10f3" + "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/72ac6d807ee51a70ad376ee03a2387e8646e10f3", - "reference": "72ac6d807ee51a70ad376ee03a2387e8646e10f3", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/4d7de2fe0d51a96418c0d04004986e410e87f6b4", + "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4", "shasum": "" }, "require": { @@ -4078,7 +4078,7 @@ "ext-mbstring": "*", "ext-openssl": "*", "ext-sodium": "*", - "lcobucci/clock": "^2.0", + "lcobucci/clock": "^2.0 || ^3.0", "php": "^7.4 || ^8.0" }, "require-dev": { @@ -4118,7 +4118,7 @@ ], "support": { "issues": "https://github.com/lcobucci/jwt/issues", - "source": "https://github.com/lcobucci/jwt/tree/4.2.1" + "source": "https://github.com/lcobucci/jwt/tree/4.3.0" }, "funding": [ { @@ -4130,7 +4130,7 @@ "type": "patreon" } ], - "time": "2022-08-19T23:14:07+00:00" + "time": "2023-01-02T13:28:00+00:00" }, { "name": "league/csv", @@ -4279,37 +4279,37 @@ }, { "name": "league/oauth2-server", - "version": "8.4.3", + "version": "8.5.5", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth2-server.git", - "reference": "8a59a84450f0f64adcea8e1f8c0e0d9dfc8887d1" + "reference": "cc8778350f905667e796b3c2364a9d3bd7a73518" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/8a59a84450f0f64adcea8e1f8c0e0d9dfc8887d1", - "reference": "8a59a84450f0f64adcea8e1f8c0e0d9dfc8887d1", + "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/cc8778350f905667e796b3c2364a9d3bd7a73518", + "reference": "cc8778350f905667e796b3c2364a9d3bd7a73518", "shasum": "" }, "require": { - "defuse/php-encryption": "^2.2.1", - "ext-json": "*", + "defuse/php-encryption": "^2.3", "ext-openssl": "*", - "lcobucci/jwt": "^3.4.6 || ^4.0.4", + "lcobucci/clock": "^2.2 || ^3.0", + "lcobucci/jwt": "^4.3 || ^5.0", "league/event": "^2.2", - "league/uri": "^6.4", - "php": "^7.2 || ^8.0", - "psr/http-message": "^1.0.1" + "league/uri": "^6.7 || ^7.0", + "php": "^8.0", + "psr/http-message": "^1.0.1 || ^2.0" }, "replace": { "league/oauth2server": "*", "lncd/oauth2": "*" }, "require-dev": { - "laminas/laminas-diactoros": "^2.4.1", + "laminas/laminas-diactoros": "^3.0.0", "phpstan/phpstan": "^0.12.57", "phpstan/phpstan-phpunit": "^0.12.16", - "phpunit/phpunit": "^8.5.13", + "phpunit/phpunit": "^9.6.6", "roave/security-advisories": "dev-master" }, "type": "library", @@ -4355,7 +4355,7 @@ ], "support": { "issues": "https://github.com/thephpleague/oauth2-server/issues", - "source": "https://github.com/thephpleague/oauth2-server/tree/8.4.3" + "source": "https://github.com/thephpleague/oauth2-server/tree/8.5.5" }, "funding": [ { @@ -4363,7 +4363,7 @@ "type": "github" } ], - "time": "2024-12-18T00:21:54+00:00" + "time": "2024-12-20T23:06:10+00:00" }, { "name": "league/omnipay", @@ -4430,54 +4430,49 @@ }, { "name": "league/uri", - "version": "6.8.0", + "version": "7.7.0", "source": { "type": "git", "url": "https://github.com/thephpleague/uri.git", - "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39" + "reference": "8d587cddee53490f9b82bf203d3a9aa7ea4f9807" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri/zipball/a700b4656e4c54371b799ac61e300ab25a2d1d39", - "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39", + "url": "https://api.github.com/repos/thephpleague/uri/zipball/8d587cddee53490f9b82bf203d3a9aa7ea4f9807", + "reference": "8d587cddee53490f9b82bf203d3a9aa7ea4f9807", "shasum": "" }, "require": { - "ext-json": "*", - "league/uri-interfaces": "^2.3", + "league/uri-interfaces": "^7.7", "php": "^8.1", - "psr/http-message": "^1.0.1" + "psr/http-factory": "^1" }, "conflict": { "league/uri-schemes": "^1.0" }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^v3.9.5", - "nyholm/psr7": "^1.5.1", - "php-http/psr7-integration-tests": "^1.1.1", - "phpbench/phpbench": "^1.2.6", - "phpstan/phpstan": "^1.8.5", - "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-phpunit": "^1.1.1", - "phpstan/phpstan-strict-rules": "^1.4.3", - "phpunit/phpunit": "^9.5.24", - "psr/http-factory": "^1.0.1" - }, "suggest": { - "ext-fileinfo": "Needed to create Data URI from a filepath", - "ext-intl": "Needed to improve host validation", - "league/uri-components": "Needed to easily manipulate URI objects", - "psr/http-factory": "Needed to use the URI factory" + "ext-bcmath": "to improve IPV4 host parsing", + "ext-dom": "to convert the URI into an HTML anchor tag", + "ext-fileinfo": "to create Data URI from file contennts", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "ext-uri": "to use the PHP native URI class", + "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain", + "league/uri-components": "Needed to easily manipulate URI objects components", + "league/uri-polyfill": "Needed to backport the PHP URI extension for older versions of PHP", + "php-64bit": "to improve IPV4 host parsing", + "rowbot/url": "to handle WHATWG URL", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "6.x-dev" + "dev-master": "7.x-dev" } }, "autoload": { "psr-4": { - "League\\Uri\\": "src" + "League\\Uri\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -4494,6 +4489,7 @@ "description": "URI manipulation library", "homepage": "https://uri.thephpleague.com", "keywords": [ + "URN", "data-uri", "file-uri", "ftp", @@ -4506,9 +4502,11 @@ "psr-7", "query-string", "querystring", + "rfc2141", "rfc3986", "rfc3987", "rfc6570", + "rfc8141", "uri", "uri-template", "url", @@ -4517,8 +4515,8 @@ "support": { "docs": "https://uri.thephpleague.com", "forum": "https://thephpleague.slack.com", - "issues": "https://github.com/thephpleague/uri/issues", - "source": "https://github.com/thephpleague/uri/tree/6.8.0" + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri/tree/7.7.0" }, "funding": [ { @@ -4526,46 +4524,44 @@ "type": "github" } ], - "time": "2022-09-13T19:58:47+00:00" + "time": "2025-12-07T16:02:06+00:00" }, { "name": "league/uri-interfaces", - "version": "2.3.0", + "version": "7.7.0", "source": { "type": "git", "url": "https://github.com/thephpleague/uri-interfaces.git", - "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383" + "reference": "62ccc1a0435e1c54e10ee6022df28d6c04c2946c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/00e7e2943f76d8cb50c7dfdc2f6dee356e15e383", - "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/62ccc1a0435e1c54e10ee6022df28d6c04c2946c", + "reference": "62ccc1a0435e1c54e10ee6022df28d6c04c2946c", "shasum": "" }, "require": { - "ext-json": "*", - "php": "^7.2 || ^8.0" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^2.19", - "phpstan/phpstan": "^0.12.90", - "phpstan/phpstan-phpunit": "^0.12.19", - "phpstan/phpstan-strict-rules": "^0.12.9", - "phpunit/phpunit": "^8.5.15 || ^9.5" + "ext-filter": "*", + "php": "^8.1", + "psr/http-message": "^1.1 || ^2.0" }, "suggest": { - "ext-intl": "to use the IDNA feature", - "symfony/intl": "to use the IDNA feature via Symfony Polyfill" + "ext-bcmath": "to improve IPV4 host parsing", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "php-64bit": "to improve IPV4 host parsing", + "rowbot/url": "to handle WHATWG URL", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "7.x-dev" } }, "autoload": { "psr-4": { - "League\\Uri\\": "src/" + "League\\Uri\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -4579,17 +4575,32 @@ "homepage": "https://nyamsprod.com" } ], - "description": "Common interface for URI representation", - "homepage": "http://github.com/thephpleague/uri-interfaces", + "description": "Common tools for parsing and resolving RFC3987/RFC3986 URI", + "homepage": "https://uri.thephpleague.com", "keywords": [ + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", "rfc3986", "rfc3987", + "rfc6570", "uri", - "url" + "url", + "ws" ], "support": { - "issues": "https://github.com/thephpleague/uri-interfaces/issues", - "source": "https://github.com/thephpleague/uri-interfaces/tree/2.3.0" + "docs": "https://uri.thephpleague.com", + "forum": "https://thephpleague.slack.com", + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri-interfaces/tree/7.7.0" }, "funding": [ { @@ -4597,7 +4608,7 @@ "type": "github" } ], - "time": "2021-06-28T04:27:21+00:00" + "time": "2025-12-07T16:03:21+00:00" }, { "name": "maennchen/zipstream-php", From 387d6781cfdcd3abd49cbdc8c4d9ccde9aa7819c Mon Sep 17 00:00:00 2001 From: Igor Mukhin Date: Mon, 5 Jan 2026 16:54:22 +0200 Subject: [PATCH 118/139] feat(api): added PATCH requests support (#10081) --- src/Common/Http/HttpRestRouteHandler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Common/Http/HttpRestRouteHandler.php b/src/Common/Http/HttpRestRouteHandler.php index 16f681dc1316..8e734ffe2cdb 100644 --- a/src/Common/Http/HttpRestRouteHandler.php +++ b/src/Common/Http/HttpRestRouteHandler.php @@ -169,6 +169,7 @@ public function checkSecurity(OEHttpKernel $kernel, HttpRestRequest $restRequest "GET" => $this->getGetRequestPermission($parsedRoute) , "POST" => 'c' , "PUT" => 'u' + , "PATCH" => 'u' , "DELETE" => 'd' , default => throw new HttpException(Response::HTTP_NOT_IMPLEMENTED, "Not implemented") }; From d198173b613ea43531deb87cbb4120b1d928926b Mon Sep 17 00:00:00 2001 From: Igor Mukhin Date: Mon, 5 Jan 2026 16:59:31 +0200 Subject: [PATCH 119/139] fix(phpstan): indent size for neon files at editorconfig (#10072) --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 20ae12fa0512..dfe4f18dedab 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,7 +7,7 @@ indent_style = space indent_size = 4 trim_trailing_whitespace = true -[*.{json,jsn,sh,yaml,yml}] +[*.{json,jsn,sh,yaml,yml,neon,neon.dist}] indent_size = 2 [composer.{json,lock}] From 2f1c7b4526ddb0c6d46d7f828074d14d983bb6f4 Mon Sep 17 00:00:00 2001 From: Igor Mukhin Date: Mon, 5 Jan 2026 19:58:20 +0200 Subject: [PATCH 120/139] fix(composer): normalize to be consistently strict (#10100) * fix(composer): validate to be strict like we have at .pre-commit-config.yaml * fix(ci): composer validate to be strict at ci --- .github/workflows/composer.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/composer.yml b/.github/workflows/composer.yml index 558757cd5098..b62e2c0f05ba 100644 --- a/.github/workflows/composer.yml +++ b/.github/workflows/composer.yml @@ -54,7 +54,7 @@ jobs: run: composer install --prefer-dist --no-progress - name: "Validate Composer" - run: composer validate + run: composer validate --strict - name: "Check Composer Normalized" run: composer normalize --dry-run diff --git a/composer.json b/composer.json index 1a7bf5ac3272..e4572248d2bb 100644 --- a/composer.json +++ b/composer.json @@ -227,7 +227,7 @@ }, "scripts": { "checks": [ - "composer validate", + "composer validate --strict", "composer normalize --dry-run" ], "code-quality": [ From 35f4468ab4cd29e6b48c62868de2ab3c81b9f035 Mon Sep 17 00:00:00 2001 From: steve waite Date: Mon, 5 Jan 2026 15:04:36 -0500 Subject: [PATCH 121/139] chore: upgrade lcobucci jwt to 4.3.0, steverhoades/oauth2-openid-connect-server to 3.0.1 (#8589) * chore: upgrade lcobucci jwt * php8 fixes * downgrade jwt to 430 * fix returns for psr http message * teardown clients * typo * reapply updates --- composer.json | 4 ++-- composer.lock | 21 ++++++++++--------- .../OpenIDConnect/Entities/ClientEntity.php | 4 ++-- .../OpenIDConnect/IdTokenSMARTResponse.php | 2 +- .../Repositories/ClientRepository.php | 1 + .../SMARTSessionTokenContextBuilder.php | 4 ++-- src/Common/Auth/UuidUserAccount.php | 2 +- .../Command/CreateReleaseChangelogCommand.php | 6 +++--- src/Common/Logging/SystemLogger.php | 2 +- 9 files changed, 24 insertions(+), 22 deletions(-) diff --git a/composer.json b/composer.json index e4572248d2bb..794f376ef7a7 100644 --- a/composer.json +++ b/composer.json @@ -75,7 +75,7 @@ "laminas/laminas-stdlib": "^3.21.0", "laminas/laminas-xmlrpc": "^2.22.0", "lcobucci/clock": "^2.3", - "lcobucci/jwt": "^4.2.1", + "lcobucci/jwt": "^4.3.0", "league/csv": "^9.28.0", "league/oauth2-server": "^8.4", "league/omnipay": "^3.2.1", @@ -105,7 +105,7 @@ "robthree/twofactorauth": "^3.0.2", "rospdf/pdf-php": "^0.12.67", "smarty/smarty": "^4.5.6", - "steverhoades/oauth2-openid-connect-server": "^2.6.1", + "steverhoades/oauth2-openid-connect-server": "^3.0.1", "stripe/stripe-php": "^16.6.0", "symfony/config": "~6.4.26", "symfony/console": "~6.4.27", diff --git a/composer.lock b/composer.lock index 5bb5082241c9..d99263858623 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "6f0904ea3920bce476256d0a25322759", + "content-hash": "545c29e2286afb24d707ffcd980abedb", "packages": [ { "name": "academe/authorizenet-objects", @@ -8886,24 +8886,25 @@ }, { "name": "steverhoades/oauth2-openid-connect-server", - "version": "v2.6.1", + "version": "v3.0.1", "source": { "type": "git", "url": "https://github.com/steverhoades/oauth2-openid-connect-server.git", - "reference": "269c4dc071519e8220e249cbdee9b0723e95215e" + "reference": "f20665aeeeec78fb336c1bc89e8152b4b2380221" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/steverhoades/oauth2-openid-connect-server/zipball/269c4dc071519e8220e249cbdee9b0723e95215e", - "reference": "269c4dc071519e8220e249cbdee9b0723e95215e", + "url": "https://api.github.com/repos/steverhoades/oauth2-openid-connect-server/zipball/f20665aeeeec78fb336c1bc89e8152b4b2380221", + "reference": "f20665aeeeec78fb336c1bc89e8152b4b2380221", "shasum": "" }, "require": { "lcobucci/jwt": "4.1.5|^4.2|^4.3|^5.0", - "league/oauth2-server": "^5.1|^6.0|^7.0|^8.0" + "league/oauth2-server": "^8.4.2|^9.0", + "php": ">=7.4" }, "require-dev": { - "laminas/laminas-diactoros": "^1.3.2", + "laminas/laminas-diactoros": "^1.3.2 || ^3.3", "phpunit/phpunit": "^5.0|^9.5" }, "type": "library", @@ -8925,9 +8926,9 @@ "description": "An OpenID Connect Server that sites on The PHP League's OAuth2 Server", "support": { "issues": "https://github.com/steverhoades/oauth2-openid-connect-server/issues", - "source": "https://github.com/steverhoades/oauth2-openid-connect-server/tree/v2.6.1" + "source": "https://github.com/steverhoades/oauth2-openid-connect-server/tree/v3.0.1" }, - "time": "2023-09-08T16:15:47+00:00" + "time": "2024-09-26T16:19:13+00:00" }, { "name": "stripe/stripe-php", @@ -14945,5 +14946,5 @@ "ext-zlib": "8.2", "php": "8.2" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.9.0" } diff --git a/src/Common/Auth/OpenIDConnect/Entities/ClientEntity.php b/src/Common/Auth/OpenIDConnect/Entities/ClientEntity.php index 4257228a40dc..b62f0a552e45 100644 --- a/src/Common/Auth/OpenIDConnect/Entities/ClientEntity.php +++ b/src/Common/Auth/OpenIDConnect/Entities/ClientEntity.php @@ -93,7 +93,7 @@ public function setRedirectUri($uri): void { if (\is_string($uri)) { $this->redirectUri = [$uri]; - } else if (\is_array($uri)) { + } elseif (\is_array($uri)) { $this->redirectUri = $uri; } else { throw new \InvalidArgumentException("redirectUri must be a string or array"); @@ -149,7 +149,7 @@ public function setScopes($scopes) if (is_string($scopes)) { $scopes = explode(" ", $scopes); - } else if (!is_array($scopes)) { + } elseif (!is_array($scopes)) { throw new \InvalidArgumentException("scopes parameter must be a valid array or string"); } $this->scopes = $scopes; diff --git a/src/Common/Auth/OpenIDConnect/IdTokenSMARTResponse.php b/src/Common/Auth/OpenIDConnect/IdTokenSMARTResponse.php index 1ac3b1ca0a5e..cdaface69112 100644 --- a/src/Common/Auth/OpenIDConnect/IdTokenSMARTResponse.php +++ b/src/Common/Auth/OpenIDConnect/IdTokenSMARTResponse.php @@ -107,7 +107,7 @@ public function generateHttpResponse(ResponseInterface $response) return $response; } - protected function getExtraParams(AccessTokenEntityInterface $accessToken) + protected function getExtraParams(AccessTokenEntityInterface $accessToken): array { $extraParams = parent::getExtraParams($accessToken); diff --git a/src/Common/Auth/OpenIDConnect/Repositories/ClientRepository.php b/src/Common/Auth/OpenIDConnect/Repositories/ClientRepository.php index 8912cc257912..c9cd58cf4aee 100644 --- a/src/Common/Auth/OpenIDConnect/Repositories/ClientRepository.php +++ b/src/Common/Auth/OpenIDConnect/Repositories/ClientRepository.php @@ -12,6 +12,7 @@ namespace OpenEMR\Common\Auth\OpenIDConnect\Repositories; +use League\OAuth2\Server\Entities\ClientEntityInterface; use League\OAuth2\Server\Repositories\ClientRepositoryInterface; use OpenEMR\Common\Auth\OpenIDConnect\Entities\ClientEntity; use OpenEMR\Common\Crypto\CryptoGen; diff --git a/src/Common/Auth/OpenIDConnect/SMARTSessionTokenContextBuilder.php b/src/Common/Auth/OpenIDConnect/SMARTSessionTokenContextBuilder.php index dd7648935318..d77473b01286 100644 --- a/src/Common/Auth/OpenIDConnect/SMARTSessionTokenContextBuilder.php +++ b/src/Common/Auth/OpenIDConnect/SMARTSessionTokenContextBuilder.php @@ -88,7 +88,7 @@ public function getContextForScopesWithExistingContext(array $context, array $sc 'need_patient_banner' => true ,'smart_style_url' => $this->getSmartStyleURL() ]; - } else if ($this->isEHRLaunchRequest($scopes)) { + } elseif ($this->isEHRLaunchRequest($scopes)) { $returnContext = [ 'need_patient_banner' => false ,'smart_style_url' => $this->getSmartStyleURL() @@ -117,7 +117,7 @@ public function getContextForScopes($scopes): array $this->getSystemLogger()->debug("SMARTSessionTokenContextBuilder->getContextForScopes()"); if ($this->isStandaloneLaunchPatientRequest($scopes)) { $context = $this->getStandaloneLaunchContext(); - } else if ($this->isEHRLaunchRequest($scopes)) { + } elseif ($this->isEHRLaunchRequest($scopes)) { $context = $this->getEHRLaunchContext(); } return $context; diff --git a/src/Common/Auth/UuidUserAccount.php b/src/Common/Auth/UuidUserAccount.php index c2c77c01bbca..776f8a39641f 100644 --- a/src/Common/Auth/UuidUserAccount.php +++ b/src/Common/Auth/UuidUserAccount.php @@ -108,7 +108,7 @@ private function collectUserRole(): ?string } else { $this->userRole = self::USER_ROLE_USERS; } - } else if (!empty($patientRole['pid'])) { + } elseif (!empty($patientRole['pid'])) { $counter++; $this->userRole = self::USER_ROLE_PATIENT; } diff --git a/src/Common/Command/CreateReleaseChangelogCommand.php b/src/Common/Command/CreateReleaseChangelogCommand.php index b6c61dd1bd14..8c02388d2fb3 100644 --- a/src/Common/Command/CreateReleaseChangelogCommand.php +++ b/src/Common/Command/CreateReleaseChangelogCommand.php @@ -229,7 +229,7 @@ private function getMilestoneNumberForMilestoneStatus($milestoneStatus, $milesto throw new \RuntimeException("Error getting milestones from github. Too many API calls\n"); } return false; - } else if ($response->getStatusCode() === 403) { + } elseif ($response->getStatusCode() === 403) { $this->printRateLimitMessage($response); throw new \RuntimeException("Error getting milestones from github\n"); } else { @@ -351,7 +351,7 @@ private function getIssuesForMilestone($milestone, mixed $accessToken) $headers = $response->getHeaders(); $issues = array_merge($issues, json_decode($response->getBody(), true)); $nextLink = $this->getNextLink($headers); - } else if ($response->getStatusCode() === 403) { + } elseif ($response->getStatusCode() === 403) { $this->printRateLimitMessage($response); $nextLink = false; } else { @@ -361,7 +361,7 @@ private function getIssuesForMilestone($milestone, mixed $accessToken) if ($loopBreak >= self::MAX_API_FETCH_COUNT) { throw new \RuntimeException("Error getting issues from github. Too many API calls\n"); } - } else if ($response->getStatusCode() === 403) { + } elseif ($response->getStatusCode() === 403) { $this->printRateLimitMessage($response); } else { echo "Error getting issues from github\n"; diff --git a/src/Common/Logging/SystemLogger.php b/src/Common/Logging/SystemLogger.php index bcbf3820ae16..6bd84b698be7 100644 --- a/src/Common/Logging/SystemLogger.php +++ b/src/Common/Logging/SystemLogger.php @@ -224,7 +224,7 @@ private function escapeVariables($dictionary, $recurseLimit = 0) $escapedKey = $this->escapeValue($key); if (is_array($value)) { $escapedDict[$key] = $this->escapeVariables($value, $recurseLimit + 1); - } else if (is_object($value)) { + } elseif (is_object($value)) { try { $object = json_encode($value); $escapedDict[$escapedKey] = $this->escapeValue($object); From 06e10dd113224988489a8e278464ff486699105a Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Mon, 5 Jan 2026 15:56:59 -0500 Subject: [PATCH 122/139] fix(pre-commit): exclude vendored third-party bundles from hooks (#10106) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The pre-commit hooks now exclude vendored third-party code that is copied from external packages, not generated by this repo's build. Excluded directories/files (alphabetized): - Documentation/EHI_Export/ (SchemaSpy + bower components) - gacl/ (phpGACL library) - interface/forms/eye_mag/js/shortcut.js-2-01-B/ (keyboard shortcut lib) - interface/forms/questionnaire_assessments/lforms/ (LHC-Forms library) - interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/dist/ (webpack build) - interface/modules/zend_modules/public/js/lib/ (jQuery + plugins) - interface/modules/zend_modules/public/xsd/ (HL7 CDA schemas) - interface/modules/zend_modules/public/xsl/ (XSL transformations) - interface/super/rules/www/js/cdr-multiselect/ (jQuery multiselect) - library/classes/fpdf/ (FPDF library) - library/fonts/ (Adobe font metrics files) - library/js/{Category,Document}TreeMenu.js, SearchHighlight.js - library/smarty_legacy/ (Smarty template engine) - public/assets/modified/ (modified third-party libs) - swagger/ (Swagger UI distribution) Also added pattern for *-min.js files (alternate minification naming). This prevents unnecessary diffs from upstream packages and avoids potentially breaking vendored code with whitespace/formatting changes. Fixes #10105 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 --- .pre-commit-config.yaml | 46 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 45 insertions(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b4e293779fb3..88c64484a909 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,50 @@ # See https://pre-commit.com for more information # See https://pre-commit.com/hooks.html for more hooks -exclude: (^|/)(composer\.lock|package-lock\.json)$|\.min\.(js|css)$|\.js\.map$|\.css\.map$ +# +# Exclusions: +# - Lock files (generated): composer.lock, package-lock.json +# - Minified files: *.min.js, *.min.css, *-min.js, *-min.css +# - Source maps: *.js.map, *.css.map +# - Vendored/generated third-party code (alphabetized): +# - Documentation/EHI_Export/ (SchemaSpy + bower components) +# - gacl/ (phpGACL library) +# - interface/forms/eye_mag/js/shortcut.js-2-01-B/ (keyboard shortcut library) +# - interface/forms/questionnaire_assessments/lforms/ (LHC-Forms library) +# - interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/dist/ (webpack build) +# - interface/modules/zend_modules/public/js/lib/ (jQuery + plugins) +# - interface/modules/zend_modules/public/xsd/ (HL7 CDA schemas) +# - interface/modules/zend_modules/public/xsl/ (XSL transformations) +# - interface/super/rules/www/js/cdr-multiselect/ (jQuery multiselect plugins) +# - library/classes/fpdf/ (FPDF library) +# - library/fonts/ (Adobe font metrics files) +# - library/js/{Category,Document}TreeMenu.js, SearchHighlight.js (vendored plugins) +# - library/smarty_legacy/ (Smarty template engine) +# - public/assets/modified/ (modified third-party libs) +# - swagger/ (Swagger UI distribution) +exclude: | + (?x)^( + # Lock files (generated) + (.*/)?(composer\.lock|package-lock\.json)$| + # Minified files and source maps + .*[.\-]min\.(js|css)$| + .*\.(js|css)\.map$| + # Vendored/generated third-party code (alphabetized) + Documentation/EHI_Export/| + gacl/| + interface/forms/eye_mag/js/shortcut\.js-2-01-B/| + interface/forms/questionnaire_assessments/lforms/| + interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/dist/| + interface/modules/zend_modules/public/js/lib/| + interface/modules/zend_modules/public/xsd/| + interface/modules/zend_modules/public/xsl/| + interface/super/rules/www/js/cdr-multiselect/| + library/classes/fpdf/| + library/fonts/| + library/js/(CategoryTreeMenu|DocumentTreeMenu|SearchHighlight)\.js$| + library/smarty_legacy/| + public/assets/modified/| + swagger/ + ) repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.5.0 From ededbd76532ee5cc7213b5a5267203683fe9383f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Jan 2026 16:16:43 -0500 Subject: [PATCH 123/139] chore(deps): bump monolog/monolog from 3.9.0 to 3.10.0 (#10091) Bumps [monolog/monolog](https://github.com/Seldaek/monolog) from 3.9.0 to 3.10.0. - [Release notes](https://github.com/Seldaek/monolog/releases) - [Changelog](https://github.com/Seldaek/monolog/blob/main/CHANGELOG.md) - [Commits](https://github.com/Seldaek/monolog/compare/3.9.0...3.10.0) --- updated-dependencies: - dependency-name: monolog/monolog dependency-version: 3.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- composer.lock | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.lock b/composer.lock index d99263858623..26dade6b2fd8 100644 --- a/composer.lock +++ b/composer.lock @@ -5015,16 +5015,16 @@ }, { "name": "monolog/monolog", - "version": "3.9.0", + "version": "3.10.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6" + "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6", - "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0", + "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0", "shasum": "" }, "require": { @@ -5042,7 +5042,7 @@ "graylog2/gelf-php": "^1.4.2 || ^2.0", "guzzlehttp/guzzle": "^7.4.5", "guzzlehttp/psr7": "^2.2", - "mongodb/mongodb": "^1.8", + "mongodb/mongodb": "^1.8 || ^2.0", "php-amqplib/php-amqplib": "~2.4 || ^3", "php-console/php-console": "^3.1.8", "phpstan/phpstan": "^2", @@ -5102,7 +5102,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/3.9.0" + "source": "https://github.com/Seldaek/monolog/tree/3.10.0" }, "funding": [ { @@ -5114,7 +5114,7 @@ "type": "tidelift" } ], - "time": "2025-03-24T10:02:05+00:00" + "time": "2026-01-02T08:56:05+00:00" }, { "name": "mpdf/mpdf", @@ -14946,5 +14946,5 @@ "ext-zlib": "8.2", "php": "8.2" }, - "plugin-api-version": "2.9.0" + "plugin-api-version": "2.6.0" } From e516e6df816fb332ace3dd44688edf611f96d60a Mon Sep 17 00:00:00 2001 From: Igor Mukhin Date: Tue, 6 Jan 2026 00:07:45 +0200 Subject: [PATCH 124/139] feat(phpstan): openemr-related rules baselines update script (#10099) * refactor(phpstorm): remaining errors baseline errors extracted to separate phpstan-remaining-baseline.neon * feat(phpstan): added phpstan-baseline composer script ... for automated updating .phpstan/phpstan-*-baseline.neon files with openemr-related rules errors * fix(phpstan): baseline ... after running composer run phpstan-baseline * ci(phpstan): adjusted to upload separate baseline files rather than one --- .github/workflows/phpstan.yml | 7 +- .phpstan/phpstan-database-baseline.neon | 16 +- .phpstan/phpstan-remaining-baseline.neon | 16974 ++++++++++++++++++++ .phpstan/phpstan.github.neon | 16988 +-------------------- composer.json | 13 + 5 files changed, 16999 insertions(+), 16999 deletions(-) create mode 100644 .phpstan/phpstan-remaining-baseline.neon diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 1e72e785b434..5b7d28b834ad 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -69,15 +69,14 @@ jobs: # Generate baseline only if analyze step failed - name: PHPStan Baseline if: steps.phpstan-analyze.outcome == 'failure' - run: vendor/bin/phpstan --memory-limit=8G --generate-baseline=baseline.neon + run: composer run phpstan-baseline continue-on-error: true - # Upload baseline only if baseline.neon file exists - name: Upload PHPStan Baseline - if: hashFiles('baseline.neon') != '' + if: steps.phpstan-analyze.outcome == 'failure' uses: actions/upload-artifact@v6 with: name: phpstan-baseline-php${{ matrix.php-version }} - path: baseline.neon + path: .phpstan/phpstan-*-baseline.neon continue-on-error: true - name: Check PHPStan Results if: steps.phpstan-analyze.outcome == 'failure' diff --git a/.phpstan/phpstan-database-baseline.neon b/.phpstan/phpstan-database-baseline.neon index e3457d07f6bf..3470fa0ab6ae 100644 --- a/.phpstan/phpstan-database-baseline.neon +++ b/.phpstan/phpstan-database-baseline.neon @@ -4160,6 +4160,10 @@ parameters: identifier: openemr.deprecatedSqlFunction count: 1 path: ../library/classes/Provider.class.php + - message: '#^GenID is deprecated\. Use QueryUtils\:\:generateId\(\) or QueryUtils\:\:ediGenerateId\(\) instead\.$#' + identifier: openemr.deprecatedSqlFunction + count: 1 + path: ../library/classes/Tree.class.php - message: '#^Use QueryUtils\:\:fetchRecords\(\) or QueryUtils\:\:fetchArrayFromResultSet\(\) instead of sqlFetchArray\(\)\.$#' identifier: openemr.deprecatedSqlFunction count: 1 @@ -5764,6 +5768,10 @@ parameters: identifier: openemr.deprecatedSqlFunction count: 1 path: ../src/Events/Messaging/SendSmsEvent.php + - message: '#^GenID is deprecated\. Use QueryUtils\:\:generateId\(\) or QueryUtils\:\:ediGenerateId\(\) instead\.$#' + identifier: openemr.deprecatedSqlFunction + count: 4 + path: ../src/Gacl/GaclApi.php - message: '#^Use QueryUtils\:\:fetchRecords\(\) or QueryUtils\:\:fetchArrayFromResultSet\(\) instead of sqlFetchArray\(\)\.$#' identifier: openemr.deprecatedSqlFunction count: 1 @@ -6592,14 +6600,6 @@ parameters: identifier: openemr.deprecatedSqlFunction count: 3 path: ../tests/Tests/Validators/PatientValidatorTest.php - - message: '#^GenID is deprecated\. Use QueryUtils\:\:generateId\(\) or QueryUtils\:\:ediGenerateId\(\) instead\.$#' - identifier: openemr.deprecatedSqlFunction - count: 1 - path: ../library/classes/Tree.class.php - - message: '#^GenID is deprecated\. Use QueryUtils\:\:generateId\(\) or QueryUtils\:\:ediGenerateId\(\) instead\.$#' - identifier: openemr.deprecatedSqlFunction - count: 4 - path: ../src/Gacl/GaclApi.php - message: '#^Laminas\-DB class "Laminas\\Db\\Adapter\\Adapter" is deprecated\. Use QueryUtils or DatabaseQueryTrait instead\.$#' identifier: openemr.deprecatedLaminasDb count: 1 diff --git a/.phpstan/phpstan-remaining-baseline.neon b/.phpstan/phpstan-remaining-baseline.neon new file mode 100644 index 000000000000..8cb4301a6987 --- /dev/null +++ b/.phpstan/phpstan-remaining-baseline.neon @@ -0,0 +1,16974 @@ +parameters: + ignoreErrors: + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../Documentation/help_files/sl_eob_help.php + - message: '#^Variable \$config might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../admin.php + - message: '#^Variable \$database_acl might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../admin.php + - message: '#^Variable \$database_patch might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../admin.php + - message: '#^Variable \$dbase might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../admin.php + - message: '#^Variable \$dbh might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../admin.php + - message: '#^Variable \$host might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../admin.php + - message: '#^Variable \$login might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../admin.php + - message: '#^Variable \$pass might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../admin.php + - message: '#^Variable \$port might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../admin.php + - message: '#^Variable \$v_acl might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../admin.php + - message: '#^Variable \$v_database might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../admin.php + - message: '#^Variable \$v_realpatch might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../admin.php + - message: '#^Variable \$authorID might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../ccr/createCCRActor.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 110 + path: ../ccr/createCCRActor.php + - message: '#^Variable \$e_Actors might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../ccr/createCCRActor.php + - message: '#^Variable \$oemrID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRActor.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 32 + path: ../ccr/createCCRAlerts.php + - message: '#^Variable \$e_Alerts might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRAlerts.php + - message: '#^Variable \$sourceID might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../ccr/createCCRAlerts.php + - message: '#^Variable \$authorID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRHeader.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 21 + path: ../ccr/createCCRHeader.php + - message: '#^Variable \$e_ccr might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../ccr/createCCRHeader.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 18 + path: ../ccr/createCCRImmunization.php + - message: '#^Variable \$e_Immunizations might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRImmunization.php + - message: '#^Variable \$sourceID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRImmunization.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 39 + path: ../ccr/createCCRMedication.php + - message: '#^Variable \$e_Medications might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRMedication.php + - message: '#^Variable \$sourceID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRMedication.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 32 + path: ../ccr/createCCRProblem.php + - message: '#^Variable \$e_Problems might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRProblem.php + - message: '#^Variable \$sourceID might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../ccr/createCCRProblem.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 33 + path: ../ccr/createCCRProcedure.php + - message: '#^Variable \$e_Procedures might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRProcedure.php + - message: '#^Variable \$sourceID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRProcedure.php + - message: '#^Variable \$authorID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRResult.php + - message: '#^Variable \$ccr might not be defined\.$#' + identifier: variable.undefined + count: 39 + path: ../ccr/createCCRResult.php + - message: '#^Variable \$e_Results might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/createCCRResult.php + - message: '#^Variable \$extension might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../ccr/transmitCCD.php + - message: '#^Variable \$text_out might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../ccr/transmitCCD.php + - message: '#^Variable \$duplicates on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../contrib/util/ccda_import/import_ccda.php + - message: '#^Variable \$policies_by_payer_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../contrib/util/chart_review_pids.php + - message: '#^Variable \$sqlconf might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../contrib/util/de_identification_upgrade.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../contrib/util/de_identification_upgrade.php + - message: '#^Variable \$dupecount might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../contrib/util/dupecheck/index.php + - message: '#^Variable \$dupelist might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../contrib/util/dupecheck/index.php + - message: '#^Variable \$sqlconf might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../contrib/util/dupecheck/mergerecords.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../contrib/util/dupscore.cli.php + - message: '#^Variable \$d might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../controllers/C_Document.class.php + - message: '#^Variable \$error might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../controllers/C_Document.class.php + - message: '#^Variable \$filetext might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../controllers/C_Document.class.php + - message: '#^Variable \$from_pathname might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../controllers/C_Document.class.php + - message: '#^Variable \$messages might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../controllers/C_Document.class.php + - message: '#^Variable \$temp_couchdb_url might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../controllers/C_Document.class.php + - message: '#^Variable \$description on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../controllers/C_DocumentCategory.class.php + - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' + identifier: staticMethod.notFound + count: 1 + path: ../controllers/C_Prescription.class.php + - message: '#^Variable \$p might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../controllers/C_Prescription.class.php + - message: '#^Variable \$prescription might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../controllers/C_Prescription.class.php + - message: '#^Variable \$files might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/ajax_download.php + - message: '#^Variable \$qrda_file_path might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/ajax_download.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/ajax_download.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/chart_tracker.php + - message: '#^Variable \$counter might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../custom/code_types.inc.php + - message: '#^Variable \$query might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../custom/code_types.inc.php + - message: '#^Variable \$sql_bind_array might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/code_types.inc.php + - message: '#^Variable \$cqmCodes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/download_qrda.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../custom/download_qrda.php + - message: '#^Variable \$facility_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$facility_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_1_denom might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_1_exclude might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_1_ipp might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_1_numer1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_1_numer2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_1_numer3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_2_denom might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_2_exclude might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_2_ipp might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_2_numer1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_2_numer2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$stratum_2_numer3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$userRow might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../custom/export_qrda_xml.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../custom/export_xml.php + - message: '#^Variable \$alertmsg might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/import_xml.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../custom/import_xml.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/import_xml.php + - message: '#^Variable \$patients might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../custom/qrda_category1.inc.php + - message: '#^Variable \$facilResRow might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../custom/qrda_category1_functions.php + - message: '#^Variable \$gender might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/qrda_category1_functions.php + - message: '#^Variable \$patFname might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/qrda_category1_functions.php + - message: '#^Variable \$patLname might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/qrda_category1_functions.php + - message: '#^Variable \$patientRow might not be defined\.$#' + identifier: variable.undefined + count: 12 + path: ../custom/qrda_category1_functions.php + - message: '#^Variable \$tdTitle might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/qrda_category1_functions.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../custom/zutil.cli.doc_import.php + - message: '#^Access to an undefined property Cache_Lite\:\:\$_memoryCachingState\.$#' + identifier: property.notFound + count: 1 + path: ../gacl/Cache_Lite/Lite.php + - message: '#^Function set_magic_quotes_runtime not found\.$#' + identifier: function.notFound + count: 2 + path: ../gacl/Cache_Lite/Lite.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/about.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../gacl/admin/about.php + - message: '#^Variable \$i might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/acl_admin.php + - message: '#^Variable \$options_acl_sections might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_admin.php + - message: '#^Variable \$options_aco_sections might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_admin.php + - message: '#^Variable \$options_aro_sections might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_admin.php + - message: '#^Variable \$options_axo_sections might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_admin.php + - message: '#^Variable \$selected_aro_array might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/acl_admin.php + - message: '#^Variable \$selected_axo_array might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/acl_admin.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../gacl/admin/acl_debug.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 24 + path: ../gacl/admin/acl_debug.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 17 + path: ../gacl/admin/acl_list.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 29 + path: ../gacl/admin/acl_list.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 32 + path: ../gacl/admin/acl_list.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/acl_test.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../gacl/admin/acl_test.php + - message: '#^Variable \$acls might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test2.php + - message: '#^Variable \$avg_acl_check_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test2.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test2.php + - message: '#^Variable \$gacl might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test2.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../gacl/admin/acl_test2.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../gacl/admin/acl_test2.php + - message: '#^Variable \$tmp_aco_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test2.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test3.php + - message: '#^Variable \$gacl might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test3.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../gacl/admin/acl_test3.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../gacl/admin/acl_test3.php + - message: '#^Variable \$tmp_aco_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test3.php + - message: '#^Variable \$tmp_aco_section_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/acl_test3.php + - message: '#^Variable \$total_acl_check_time might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/acl_test3.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../gacl/admin/assign_group.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 22 + path: ../gacl/admin/assign_group.php + - message: '#^Variable \$i might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/assign_group.php + - message: '#^Variable \$selected_object_array might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/assign_group.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 20 + path: ../gacl/admin/assign_group.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/edit_group.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 17 + path: ../gacl/admin/edit_group.php + - message: '#^Variable \$retry might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/edit_group.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 13 + path: ../gacl/admin/edit_group.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/edit_object_sections.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 16 + path: ../gacl/admin/edit_object_sections.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 12 + path: ../gacl/admin/edit_object_sections.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../gacl/admin/edit_objects.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 17 + path: ../gacl/admin/edit_objects.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 15 + path: ../gacl/admin/edit_objects.php + - message: '#^Variable \$gacl_options might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../gacl/admin/gacl_admin.inc.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/group_admin.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../gacl/admin/group_admin.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../gacl/admin/group_admin.php + - message: '#^Undefined variable\: \$db$#' + identifier: variable.undefined + count: 1 + path: ../gacl/admin/object_search.php + - message: '#^Variable \$db might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../gacl/admin/object_search.php + - message: '#^Variable \$gacl_api might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../gacl/admin/object_search.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 14 + path: ../gacl/admin/object_search.php + - message: '#^Access to an undefined property Profiler\:\:\$output_enabled\.$#' + identifier: property.notFound + count: 2 + path: ../gacl/profiler.inc.php + - message: '#^Access to an undefined property Profiler\:\:\$trace_enabled\.$#' + identifier: property.notFound + count: 2 + path: ../gacl/profiler.inc.php + - message: '#^Variable \$config might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../index.php + - message: '#^Variable \$m_error might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batchEmail.php + - message: '#^Variable \$m_error_count might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/batchcom/batchEmail.php + - message: '#^Variable \$res might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batchEmail.php + - message: '#^Variable \$res might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batchPhoneList.php + - message: '#^Variable \$check_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batch_phone_notification.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batch_phone_notification.php + - message: '#^Variable \$ssql might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batch_phone_notification.php + - message: '#^Variable \$results_log might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batch_reminders.php + - message: '#^Variable \$send_rem_log might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/batchcom/batch_reminders.php + - message: '#^Variable \$file might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/batchcom/batchcom.inc.php + - message: '#^Variable \$flag_on might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batchcom.inc.php + - message: '#^Variable \$line might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batchcom.inc.php + - message: '#^Variable \$choices might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batchcom.php + - message: '#^Variable \$form_err might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../interface/batchcom/batchcom.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/batchcom.php + - message: '#^Variable \$email_sender might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/emailnotification.php + - message: '#^Variable \$email_subject might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/emailnotification.php + - message: '#^Variable \$form_err might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/batchcom/emailnotification.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/emailnotification.php + - message: '#^Variable \$notification_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/emailnotification.php + - message: '#^Variable \$provider_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/emailnotification.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/emailnotification.php + - message: '#^Variable \$SMS_gateway_apikey might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$SMS_gateway_password might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$SMS_gateway_username might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$Send_Email_Before_Hours might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$Send_SMS_Before_Hours might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$SettingsId might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$form_err might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/settingsnotification.php + - message: '#^Variable \$form_err might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/batchcom/smsnotification.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/smsnotification.php + - message: '#^Variable \$notification_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/smsnotification.php + - message: '#^Variable \$provider_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/smsnotification.php + - message: '#^Variable \$sms_gateway_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/smsnotification.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/batchcom/smsnotification.php + - message: '#^Variable \$CheckBoxBilling might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$default_x12_partner might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$divnos on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$effective_insurances on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$enc_billing_note might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$left_ubmargin might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$top_ubmargin might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$ub04_support might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/billing_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/billing_tracker.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/billing/edi_270.php + - message: '#^Variable \$_FILES in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/billing/edi_271.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/edi_271.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/billing/edi_271.php + - message: '#^Variable \$html_str might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edih_main.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 16 + path: ../interface/billing/edih_main.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edih_view.php + - message: '#^Variable \$AccountCode might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$AdjustString might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$CountIndexAbove might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$CountIndexBelow might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$QueryPart might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$Table might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$TypeCode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$bgcolor might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/edit_payment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/era_payments.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/era_payments.php + - message: '#^Variable \$claim_file_dir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/get_claim_file.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/indigent_patients_report.php + - message: '#^Variable \$CountIndexBelow might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/new_payment.php + - message: '#^Variable \$PaymentType might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/new_payment.php + - message: '#^Variable \$QueryPart might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/new_payment.php + - message: '#^Variable \$TypeCode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/new_payment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/new_payment.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/new_payment.php + - message: '#^Variable \$PayTotal might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/payment_master.inc.php + - message: '#^Variable \$PostToDate might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/payment_master.inc.php + - message: '#^Variable \$global_amount might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/payment_master.inc.php + - message: '#^Variable \$payment_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/payment_master.inc.php + - message: '#^Variable \$screen might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/payment_master.inc.php + - message: '#^Variable \$bgcolor might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/payment_pat_sel.inc.php + - message: '#^Variable \$hidden_patient_code might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/billing/payment_pat_sel.inc.php + - message: '#^Variable \$employer_data_array might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_billing_report.php + - message: '#^Variable \$insurance_data_array might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_billing_report.php + - message: '#^Variable \$patient_data_array might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_billing_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_billing_report.php + - message: '#^Variable \$catch_provider might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$catch_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$fuser_final_list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$gtotal_fee might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$gtotal_insadj might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$gtotal_inspay might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$gtotal_insref might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$gtotal_patadj might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$gtotal_patpay might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$gtotal_patref might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$line_total might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$line_total_pay might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_inspay might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro0_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_inspay might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro10_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro11_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro12_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro13_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro14_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro15_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro16_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro17_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro18_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro19_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro1_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro2_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro3_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro4_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro5_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro6_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro7_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro8_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$pro9_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$provider_info might not be defined\.$#' + identifier: variable.undefined + count: 19 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$query_part_day might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$run_provider might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$totals_only might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us0_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us10_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us11_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us12_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us13_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us14_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us15_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us16_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us17_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us18_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us19_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us1_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us2_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us3_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us4_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us5_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us6_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us7_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us8_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_insref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_patref might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$us9_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$user_info might not be defined\.$#' + identifier: variable.undefined + count: 17 + path: ../interface/billing/print_daysheet_report_num1.php + - message: '#^Variable \$catch_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$gtotal_fee might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$gtotal_insadj might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$gtotal_inspay might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$gtotal_patadj might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$gtotal_patpay might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$query_part_day might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$totals_only might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us0_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us0_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us0_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us0_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us0_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us0_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us10_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us10_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us10_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us10_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us10_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us10_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us11_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us11_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us11_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us11_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us11_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us11_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us12_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us12_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us12_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us12_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us12_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us12_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us13_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us13_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us13_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us13_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us13_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us13_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us14_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us14_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us14_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us14_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us14_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us14_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us15_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us15_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us15_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us15_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us15_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us15_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us16_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us16_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us16_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us16_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us16_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us16_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us17_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us17_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us17_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us17_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us17_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us17_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us18_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us18_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us18_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us18_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us18_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us18_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us19_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us19_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us19_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us19_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us19_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us19_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us1_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us1_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us1_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us1_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us1_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us1_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us2_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us2_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us2_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us2_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us2_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us2_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us3_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us3_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us3_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us3_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us3_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us3_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us4_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us4_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us4_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us4_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us4_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us4_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us5_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us5_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us5_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us5_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us5_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us5_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us6_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us6_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us6_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us6_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us6_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us6_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us7_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us7_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us7_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us7_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us7_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us7_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us8_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us8_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us8_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us8_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us8_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us8_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us9_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us9_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us9_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us9_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us9_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$us9_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$user_info might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../interface/billing/print_daysheet_report_num2.php + - message: '#^Variable \$catch_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$gtotal_fee might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$gtotal_insadj might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$gtotal_inspay might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$gtotal_patadj might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$gtotal_patpay might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$line_total might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$line_total_pay might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$query_part_day might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$totals_only might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us0_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us0_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us0_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us0_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us0_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us0_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us10_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us10_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us10_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us10_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us10_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us10_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us11_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us11_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us11_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us11_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us11_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us11_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us12_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us12_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us12_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us12_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us12_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us12_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us13_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us13_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us13_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us13_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us13_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us13_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us14_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us14_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us14_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us14_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us14_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us14_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us15_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us15_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us15_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us15_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us15_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us15_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us16_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us16_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us16_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us16_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us16_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us16_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us17_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us17_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us17_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us17_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us17_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us17_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us18_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us18_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us18_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us18_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us18_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us18_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us19_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us19_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us19_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us19_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us19_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us19_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us1_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us1_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us1_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us1_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us1_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us1_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us2_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us2_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us2_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us2_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us2_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us2_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us3_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us3_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us3_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us3_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us3_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us3_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us4_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us4_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us4_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us4_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us4_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us4_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us5_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us5_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us5_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us5_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us5_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us5_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us6_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us6_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us6_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us6_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us6_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us6_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us7_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us7_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us7_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us7_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us7_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us7_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us8_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us8_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us8_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us8_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us8_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us8_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us9_fee might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us9_insadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us9_inspay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us9_patadj might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us9_patpay might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$us9_user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$user_info might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../interface/billing/print_daysheet_report_num3.php + - message: '#^Variable \$PaymentDateString might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/search_payments.php + - message: '#^Variable \$ResultSearch might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/search_payments.php + - message: '#^Variable \$StringSessionId might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/search_payments.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/search_payments.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/billing/sl_eob_invoice.php + - message: '#^Variable \$tmpadj on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/billing/sl_eob_invoice.php + - message: '#^Variable \$STMT_PRINT_CMD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/sl_eob_search.php + - message: '#^Variable \$STMT_TEMP_FILE might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/billing/sl_eob_search.php + - message: '#^Variable \$countline might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/sl_eob_search.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/billing/sl_eob_search.php + - message: '#^Variable \$docname might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/sl_receipts_report.php + - message: '#^Variable \$docnameleft might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/sl_receipts_report.php + - message: '#^Variable \$doctotal1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/billing/sl_receipts_report.php + - message: '#^Variable \$doctotal2 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/billing/sl_receipts_report.php + - message: '#^Variable \$patient_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/sl_receipts_report.php + - message: '#^Variable \$thedate might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/billing/sl_receipts_report.php + - message: '#^Variable \$revcod might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/ub04_dispose.php + - message: '#^Variable \$revcode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/ub04_dispose.php + - message: '#^Variable \$revcode2 might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/billing/ub04_dispose.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/ub04_form.php + - message: '#^Variable \$ub04id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/ub04_form.php + - message: '#^Variable \$resultpd might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/billing/ub04_helpers.php + - message: '#^Variable \$optionsLabel in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/clickmap/C_AbstractClickmap.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/code_systems/standard_tables_manage.php + - message: '#^Variable \$deIdentificationStatus might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/de_identification_forms/de_identification_screen1.php + - message: '#^Variable \$no_of_items might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/de_identification_screen1.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/de_identification_forms/de_identification_screen1.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/de_identification_forms/de_identification_screen1.php + - message: '#^Variable \$viewmode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/de_identification_screen1.php + - message: '#^Variable \$deIdentificationStatus might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/de_identification_screen2.php + - message: '#^Variable \$filename might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/de_identification_forms/de_identification_screen2.php + - message: '#^Variable \$include_tables might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/de_identification_forms/de_identification_screen2.php + - message: '#^Variable \$sqlconf might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/de_identification_forms/de_identification_screen2.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/de_identification_forms/de_identification_screen2.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/find_code_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/find_code_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/find_drug_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/find_immunization_popup.php + - message: '#^Variable \$no_of_items might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/re_identification_input_screen.php + - message: '#^Variable \$reIdentificationStatus might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/de_identification_forms/re_identification_input_screen.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/de_identification_forms/re_identification_input_screen.php + - message: '#^Variable \$no_of_items might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/re_identification_op_single_patient.php + - message: '#^Variable \$reIdCode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/re_identification_op_single_patient.php + - message: '#^Variable \$sqlconf might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/de_identification_forms/re_identification_op_single_patient.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/de_identification_forms/re_identification_op_single_patient.php + - message: '#^Variable \$status might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/de_identification_forms/re_identification_op_single_patient.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/drugs/add_edit_drug.php + - message: '#^Variable \$tres might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/drugs/add_edit_drug.php + - message: '#^Variable \$row might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/drugs/add_edit_lot.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/drugs/add_edit_lot.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/drugs/dispense_drug.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/drugs/dispense_drug.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/drugs/dispense_drug.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/drugs/drug_inventory.php + - message: '#^Access to an undefined property eRxPage\:\:\$prescriptions\.$#' + identifier: property.notFound + count: 1 + path: ../interface/eRxPage.php + - message: '#^Undefined variable\: \$encounter$#' + identifier: variable.undefined + count: 1 + path: ../interface/eRxSOAP.php + - message: '#^Undefined variable\: \$jasonzip$#' + identifier: variable.undefined + count: 2 + path: ../interface/eRx_xml.php + - message: '#^Undefined variable\: \$prec$#' + identifier: variable.undefined + count: 1 + path: ../interface/eRx_xml.php + - message: '#^Variable \$jasonzip might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/eRx_xml.php + - message: '#^Variable \$num might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/eRx_xml.php + - message: '#^Variable \$txt might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/eRx_xml.php + - message: '#^Variable \$zip4 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/eRx_xml.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/easipro/pro.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/easipro/pro.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/easipro/pro.php + - message: '#^Variable \$arr_files_php might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/expand_contract_js.php + - message: '#^Variable \$catid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/fax/fax_dispatch.php + - message: '#^Variable \$erow might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/fax/fax_dispatch.php + - message: '#^Variable \$newid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/fax/fax_dispatch.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/fax/fax_dispatch.php + - message: '#^Variable \$tmp_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/fax/fax_dispatch.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/fax/fax_dispatch.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/fax/fax_dispatch.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/ajax_save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/CAMOS/ajax_save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/CAMOS/ajax_save.php + - message: '#^Undefined variable\: \$encounter$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/content_parser.php + - message: '#^Variable \$justify_trimmed might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/content_parser.php + - message: '#^Variable \$code_list in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$days_ago might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$last_encounter_id might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$subtablename might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$tablename might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$tmp in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$to_alter_column might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$to_alter_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$to_alter_table might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$to_delete_from_subtable might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$to_delete_from_table might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$to_delete_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/CAMOS/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/CAMOS/notegen.php + - message: '#^Variable \$name might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/CAMOS/notegen.php + - message: '#^Variable \$user_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/CAMOS/notegen.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/print.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/CAMOS/view.php + - message: '#^Function cms_field_to_lbf not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/forms/LBF/new.php + - message: '#^Function cms_portal_call not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/forms/LBF/new.php + - message: '#^Undefined variable\: \$BS_COL_CLASS$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$BS_COL_CLASS might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$date_init might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$enrow might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$fs might not be defined\.$#' + identifier: variable.undefined + count: 15 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$ignoreAuth_onsite_portal might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 18 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$svccount might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/LBF/new.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/LBF/printable.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/LBF/printable.php + - message: '#^Variable \$pdf might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/LBF/printable.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/LBF/printable.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/LBF/printable.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/LBF/printable.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/LBF/printable.php + - message: '#^Variable \$disabled might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/aftercare_plan/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/aftercare_plan/new.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/aftercare_plan/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/aftercare_plan/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/aftercare_plan/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/aftercare_plan/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/aftercare_plan/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/aftercare_plan/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/aftercare_plan/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ankleinjury/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ankleinjury/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ankleinjury/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ankleinjury/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/ankleinjury/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/ankleinjury/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ankleinjury/view.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ankleinjury/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/bronchitis/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/bronchitis/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/bronchitis/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/bronchitis/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/bronchitis/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/bronchitis/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/bronchitis/view.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/bronchitis/view.php + - message: '#^Variable \$all might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/care_plan/new.php + - message: '#^Variable \$care_plan_type might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/care_plan/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/care_plan/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/care_plan/new.php + - message: '#^Variable \$data might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/care_plan/report.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/care_plan/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/care_plan/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/care_plan/save.php + - message: '#^Variable \$key might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/care_plan/templates/careplan_actions.php + - message: '#^Variable \$key might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/care_plan/templates/careplan_reason_row.php + - message: '#^Variable \$reasonCodeStatii might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/care_plan/templates/careplan_reason_row.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/clinic_note/new.php + - message: '#^Variable \$top_bg_line might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/new.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/view.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/view.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/clinic_note/view.php + - message: '#^Variable \$top_bg_line might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/view.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinic_note/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinical_instructions/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/clinical_instructions/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinical_instructions/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/clinical_instructions/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/clinical_instructions/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinical_instructions/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/clinical_notes/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/clinical_notes/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/clinical_notes/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/clinical_notes/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/dictation/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/dictation/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/dictation/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/dictation/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/dictation/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/dictation/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/dictation/view.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/dictation/view.php + - message: '#^Variable \$BPDN might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$CTLODQUANTITY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$CTLOSQUANTITY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$CTL_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$LENS_MATERIAL might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$LENS_TREATMENTS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODADD2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODCYL might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODHBASE might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODHPD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODMIDADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODMPDN might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODSLABOFF might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODVBASE might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODVERTEXDIST might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$ODVPD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSADD2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSCYL might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSHBASE might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSHPD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSMIDADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSMPDN might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSSLABOFF might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSVBASE might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSVERTEXDIST might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$OSVPD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$REFTYPE might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$RXTYPE might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$Single might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$detailed might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$form_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$i might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$insert_this_id might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/SpectacleRx.php + - message: '#^Variable \$HELLO might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ISSUE_CLASSIFICATIONS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSCOMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSCV might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSDERM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSENDOCRINE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSGENERAL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSGI might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSGU might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSHEENT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSIMMUNO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSMUSCULO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSNEURO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSPSYCH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$ROSPULM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$result2 might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$subtype might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$type_index might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/a_issue.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/help.php + - message: '#^Variable \$ANTSEG might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/js/eye_base.php + - message: '#^Variable \$EXT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/js/eye_base.php + - message: '#^Variable \$NEURO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/js/eye_base.php + - message: '#^Variable \$RETINA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/js/eye_base.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/js/eye_base.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/new.php + - message: '#^Function build_PMSFH invoked with 0 parameters, 1 required\.$#' + identifier: arguments.count + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Undefined variable\: \$header1$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Undefined variable\: \$k$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Undefined variable\: \$old_OCTs$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Undefined variable\: \$old_VFs$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT10CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT10CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT10SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT10SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT11CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT11CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT11SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT11SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT1CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT1CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT1SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT1SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT2CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT2CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT2SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT2SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT3CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT3CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT3SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT3SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT4CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT4CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT4SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT4SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT5CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT5CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT5SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT5SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT6CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT6CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT6SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT6SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT7CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT7CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT7SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT7SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT8CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT8CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT8SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT8SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT9CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT9CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT9SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ACT9SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ANTSEG_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARODSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ARODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$AROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$AROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$AROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$AROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$AROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$AROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ATROPINE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$BPDD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$BPDN on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CACCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CACCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$COMMENTS on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CONTRASTODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRODSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CRODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLODBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLODDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLODSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLOSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLOSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLOSBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLOSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLOSDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLOSSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLSUPPLIEROD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CTLSUPPLIEROS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CYCLOGYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$CYCLOMYDRIL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$DACCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$DACCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$DIL_MEDS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$DM_code might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$DX might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$EXT_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$FAILED_drug might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$FAILED_drugs might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$GLAREODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$GLAREOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$GONIO_values might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$HERTELBASE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LADNEXA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LBROW might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LCAROTID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LCNV might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LCNVII might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LENS_MATERIAL on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LENS_TREATMENTS on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LIODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LIOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LLF might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LLL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LMCT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LMRD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LTEMPART might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LUL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$LVFISSURE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITYNORMAL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LI might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LLIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LLSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LRIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LRSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_LS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RI might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RLIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RLSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RRIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RRSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MOTILITY_RS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRODSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MRODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$MROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$NEARODVA on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$NEAROSVA on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$NEO25 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$NEURO_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$NPC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OCT_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OCT_values might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODAC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODACD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODADD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODAXIALLENGTH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODAXIS on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODCMT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODCOINS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODCOLOR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODCONJ might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODCORNEA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODCUP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODCYL on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODDISC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODECL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODGONIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODHBASE on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODHERTEL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODHPD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODIOP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODIOPTARGET might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODIOPTARGETS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODIOPTARGET_values might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODIRIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODK1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODK2 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODK2AXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODKTHICKNESS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODLENS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODLT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODMACULA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODMIDADD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODMPDD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODMPDN on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODNPA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODPERIPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODREDDESAT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODSCHIRMER1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODSCHIRMER2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODSLABOFF on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODSPH on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODTBUT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODVA on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODVBASE on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODVERTEXDIST on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODVESSELS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODVITREOUS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODVPD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$ODW2W might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OD_methods might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OD_time_values might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OD_values might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSAC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSACD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSADD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSAXIALLENGTH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSAXIS on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSCMT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSCOINS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSCOLOR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSCONJ might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSCORNEA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSCUP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSCYL on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSDISC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSECL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSGONIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSHBASE on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSHERTEL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSHPD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSIOPTARGET might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSIOPTARGETS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSIOPTARGET_values might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSIRIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSK1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSK2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSK2AXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSKTHICKNESS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSLENS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSLT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSMACULA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSMIDADD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSMPDD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSMPDN on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSNPA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSPERIPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSREDDESAT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSSCHIRMER1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSSCHIRMER2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSSLABOFF on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSSPH on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSTBUT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSVA on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSVBASE on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSVERTEXDIST on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSVESSELS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSVITREOUS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSVPD on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OSW2W might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OS_methods might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OS_time_values might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$OS_values might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$PAMODBA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$PAMODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$PAMOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$PHODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$PHOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$PMFSH on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RADNEXA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RBROW might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RCAROTID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RCNV might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RCNVII might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RETINA_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RLF might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RLL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RMCT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RMRD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RTEMPART might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RUL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RVFISSURE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RX_TYPE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$RX_TYPE on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 5 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$STEREOPSIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$TROPICAMIDE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$VABINOC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$VERTFUSAMPS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$VF_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$VF_values might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$VISITS_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$action might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$all might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$categories might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$children_names might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$clinical_terms might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$code might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$code_found in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$count might not be defined\.$#' + identifier: variable.undefined + count: 16 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$current_OCT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$current_VF might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$display_Add might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$display_PMSFH might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$encounter_date on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$fullscreen on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$gonios might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$here might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$hideme might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$hit_RVO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$id on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$item on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$my_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$number_rows on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$output might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$parent_name in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$parent_name on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$pend might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$sub_term might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$time might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$time_OU might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$total_PMSFH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$zones might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/eye_mag_functions.php + - message: '#^Variable \$encounter_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/taskman_functions.php + - message: '#^Variable \$form_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/php/taskman_functions.php + - message: '#^Variable \$sent_date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/php/taskman_functions.php + - message: '#^Undefined variable\: \$id$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Undefined variable\: \$table_name$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT10CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT10CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT10SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT10SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT11CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT11CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT11SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT11SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT1CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT1CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT1SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT1SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT2CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT2CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT2SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT2SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT3CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT3CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT3SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT3SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT4CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT4CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT4SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT4SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT5CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT5CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT5SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT5SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT6CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT6CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT6SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT6SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT7CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT7CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT7SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT7SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT8CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT8CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT8SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT8SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT9CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT9CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT9SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ACT9SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AMSLEROD might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AMSLEROS might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ANTSEG_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARODSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ARODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$AROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ASSOCIATED1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ASSOCIATED2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ASSOCIATED3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CACCDIST might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CACCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CC1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CC2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CC3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CHRONIC1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CHRONIC2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CHRONIC3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CONTEXT1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CONTEXT2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CONTEXT3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CONTRASTODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CONTRASTOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRCOMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRODSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CRODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLODBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLODDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLODSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLOSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLOSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLOSBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLOSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLOSDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLOSSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLOSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLSUPPLIEROD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$CTLSUPPLIEROS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DACCDIST might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DACCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DIL_MEDS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DIMODPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DIMODPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DIMOSPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DIMOSPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DURATION1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DURATION2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DURATION3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$EXT_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$GLAREODVA might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$GLAREOSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$HERTELBASE might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$HPI1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$HPI2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$HPI3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$IOPTIME might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LADNEXA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LBROW might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LCAROTID might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LCNV might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LCNVII might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LIODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LIOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LLF might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LLL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LMCT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LMRD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LOCATION1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LOCATION2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LOCATION3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LTEMPART might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LUL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$LVFISSURE might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MODIFY1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MODIFY2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MODIFY3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITYNORMAL might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_L0 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_LI might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_LL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_LLIO might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_LLSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_LR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_LRSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_LS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_R0 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RI might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RLIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RLSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RRIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RRSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MOTILITY_RS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRODSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MRODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$MROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$NEURO_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$NPC might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODAC might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODACD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODAPD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODAXIALLENGTH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODCMT might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODCOINS might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODCOLOR might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODCONJ might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODCORNEA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODCUP might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODDISC might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODECL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODGONIO might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODHERTEL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODIOPAP might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODIOPFTN might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODIOPTPN might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODIRIS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODK1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODK2 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODK2AXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODKTHICKNESS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODLENS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODLT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODMACULA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODNEARVA_1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODNPA might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODNPC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODPERIPH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODPUPILREACTIVITY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODREDDESAT might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODSCHIRMER1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODSCHIRMER2 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODTBUT might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODVA_1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODVESSELS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODVF1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODVF2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODVF3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODVF4 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODVITREOUS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$ODW2W might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSAC might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSACD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSAPD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSAXIALLENGTH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSCMT might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSCOINS might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSCOLOR might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSCONJ might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSCORNEA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSCUP might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSDISC might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSECL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSGONIO might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSHERTEL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSIOPAP might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSIOPFTN might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSIOPTPN might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSIRIS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSK1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSK2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSK2AXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSKTHICKNESS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSLENS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSLT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSMACULA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSNEARVA_1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSNPA might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSNPC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSPERIPH might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSPUPILREACTIVITY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSREDDESAT might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSSCHIRMER1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSSCHIRMER2 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSTBUT might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSVA_1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSVESSELS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSVF1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSVF2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSVF3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSVF4 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSVITREOUS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$OSW2W might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$PAMODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$PAMOSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$PHODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$PHOSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$PLAN_results in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$PUPIL_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$PUPIL_NORMAL might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$QUALITY1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$QUALITY2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$QUALITY3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RADNEXA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RBROW might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RCAROTID might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RCNV might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RCNVII might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RETINA_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RLF might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RLL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RMCT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RMRD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RTEMPART might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RUL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RVFISSURE might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$RX_TYPE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$SCNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$SCNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$SCODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$SCOSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$SEVERITY1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$SEVERITY2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$SEVERITY3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$STEREOPSIS might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$TIMING1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$TIMING2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$TIMING3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$VERTFUSAMPS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$bad on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$display_Add might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$encounter_date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$pend might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/report.php + - message: '#^Variable \$DOCS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$N might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$PMSFH might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$category_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$dups might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$form_encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$form_injury_part might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$form_injury_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$form_return might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$ndc_info might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$new_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$printable might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$text_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$visit_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/eye_mag/taskman.php + - message: '#^Variable \$ACT might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT10CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT10CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT10SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT10SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT11CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT11CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT11SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT11SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT1CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT1CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT1SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT1SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT2CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT2CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT2SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT2SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT3CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT3CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT3SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT3SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT4CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT4CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT4SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT4SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT5CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT5CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT5SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT5SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT6CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT6CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT6SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT6SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT7CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT7CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT7SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT7SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT8CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT8CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT8SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT8SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT9CCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT9CCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT9SCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ACT9SCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AMSLEROD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AMSLEROS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ANTSEG_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARODSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ARODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$AROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ASSOCIATED1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ASSOCIATED2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ASSOCIATED3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ATROPINE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$BALANCED might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$BINOCVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CACCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CACCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CC1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CC2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CC3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CHRONIC1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CHRONIC2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CHRONIC3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CONTEXT1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CONTEXT2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CONTEXT3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CRCOMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CRODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CRODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CRODSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CRODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLBRAND_list_OD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLBRAND_list_OS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLODBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLODDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLODSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLOSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLOSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLOSBC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLOSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLOSDIAM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLOSSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLOSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLSUPPLIEROD might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTLSUPPLIEROS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CTL_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CYCLOGYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$CYCLOMYDRIL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DACCDIST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DACCNEAR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DIL_MEDS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DIL_RISKS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DIMODPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DIMODPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DIMOSPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DIMOSPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DURATION1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DURATION2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$DURATION3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$EXT_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$GLAREODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$GLAREOSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$HERTELBASE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$HPI1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$HPI2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$HPI3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$IMP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$IOPTIME might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LADNEXA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LBROW might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LCAROTID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LCNV might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LCNVII might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LIODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LIOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LLF might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LLL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LMCT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LMRD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LOCATION1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LOCATION2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LOCATION3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LOCKED might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LOCKED on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LOCKEDBY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LOCKEDBY on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LTEMPART might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LUL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$LVFISSURE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MODIFY1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MODIFY2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MODIFY3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITYNORMAL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LI might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LL might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LLIO might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LLSO might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LR might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LRIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LRSO might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_LS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RI might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RL might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RLIO might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RLSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RR might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RRIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RRSO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MOTILITY_RS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRODADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRODAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRODCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRODPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRODSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MRODVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MROSADD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MROSAXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MROSCYL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MROSPRISM might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MROSSPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$MROSVA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$NEO25 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$NEURO_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$NPC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODAC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODACD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODAPD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODAXIALLENGTH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODCMT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODCOINS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODCOLOR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODCONJ might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODCORNEA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODCUP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODDISC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODGONIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODHERTEL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODIOPAP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODIOPFTN might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODIOPPOST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODIOPTPN might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODIRIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODK1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODK2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODK2AXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODKTHICKNESS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODLENS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODLT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODMACULA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODNPA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODPERIPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODPUPILREACTIVITY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODREDDESAT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODSCHIRMER1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODSCHIRMER2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODTBUT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODVESSELS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODVF1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODVF2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODVF3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODVF4 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODVITREOUS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$ODW2W might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSAC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSACD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSAPD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSAXIALLENGTH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSCMT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSCOINS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSCOLOR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSCONJ might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSCORNEA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSCUP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSDISC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSGONIO might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSHERTEL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSIOPAP might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSIOPFTN might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSIOPPOST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSIOPTPN might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSIRIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSK1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSK2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSK2AXIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSKTHICKNESS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSLENS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSLT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSMACULA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSNPA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSPDMeasured might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSPERIPH might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSPUPILREACTIVITY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSPUPILSIZE1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSPUPILSIZE2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSREDDESAT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSSCHIRMER1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSSCHIRMER2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSTBUT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSVESSELS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSVF1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSVF2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSVF3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSVF4 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSVITREOUS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$OSW2W might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$PAMODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$PAMOSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$PHODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$PHOSVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$PUPIL_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$PUPIL_NORMAL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$QUALITY1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$QUALITY2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$QUALITY3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RADNEXA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RBROW might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RCAROTID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RCNV might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RCNVII might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RETINA_COMMENTS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RLF might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RLL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RMCT might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RMRD might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RTEMPART might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RUL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$RVFISSURE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$SCNEARODVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$SCNEAROSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$SCODVA might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$SCOSVA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$SEVERITY1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$SEVERITY2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$SEVERITY3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$STEREOPSIS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$TIMING1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$TIMING2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$TIMING3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$TROPICAMIDE might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$VERTFUSAMPS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$WETTYPE might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$alert might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$confused might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 28 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$encounter_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$found on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$oriented might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$provider_id might not be defined\.$#' + identifier: variable.undefined + count: 12 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$setting_SDRETINA on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$uniqueID on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/eye_mag/view.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/code_choice/initialize_code_choice.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/contraception_products/initialize_contraception_products.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/contraception_products/initialize_contraception_products.php + - message: '#^Variable \$cleave_opt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$fee in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$ndc_applies might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$revenue_code might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/new.php + - message: '#^Variable \$entry might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/code_check.php + - message: '#^Variable \$database might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php + - message: '#^Variable \$issues might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php + - message: '#^Variable \$json_diags might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php + - message: '#^Variable \$json_procs might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php + - message: '#^Variable \$req_encounter might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php + - message: '#^Variable \$req_pid might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php + - message: '#^Variable \$task might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/fee_sheet_classes.php + - message: '#^Variable \$billing_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php + - message: '#^Variable \$database might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php + - message: '#^Variable \$json_diags might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php + - message: '#^Variable \$req_encounter might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php + - message: '#^Variable \$req_pid might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php + - message: '#^Variable \$task might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/fee_sheet/review/fee_sheet_queries.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/fee_sheet_search_queries.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/initialize_review.php + - message: '#^Variable \$isBilled might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/initialize_review.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/initialize_review.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/fee_sheet/review/initialize_review.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/fee_sheet/review/views/review.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/functional_cognitive_status/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/functional_cognitive_status/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/functional_cognitive_status/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/functional_cognitive_status/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/functional_cognitive_status/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/gad7/gad7.inc.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_default might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_extremely might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_form_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_form_title might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_more might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_nearly might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_nosave_confirm might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_nosave_exit might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_not might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_q8 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_q8_2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_several might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_somewhat might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$str_very might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/new.php + - message: '#^Variable \$data might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/report.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/gad7/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/gad7/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_afraid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_annoyed might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_control_worry might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_default might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_extremely might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_form_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_form_title might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_more might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_nearly might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_nervous might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_nosave_confirm might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_nosave_exit might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_not might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_q8 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_q8_2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_relax might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_restless might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_several might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_somewhat might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_very might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$str_worry might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/gad7/view.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/group_attendance/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/group_attendance/new.php + - message: '#^Variable \$therapy_group might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/group_attendance/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/group_attendance/save.php + - message: '#^Variable \$therapy_group might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/group_attendance/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/group_attendance/save.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/misc_billing_options/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/misc_billing_options/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/misc_billing_options/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/misc_billing_options/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/misc_billing_options/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/misc_billing_options/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/misc_billing_options/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/misc_billing_options/save.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/misc_billing_options/save.php + - message: '#^Variable \$disabled might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$posCode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 14 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$therapyGroupCategories might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$therapy_group might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$viewmode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/common.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/newGroupEncounter/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newGroupEncounter/view.php + - message: '#^Variable \$body_javascript on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php + - message: '#^Variable \$override in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php + - message: '#^Variable \$rootdir on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php + - message: '#^Variable \$userauthorized on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/newpatient/common.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newpatient/common.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/newpatient/common.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newpatient/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/newpatient/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/newpatient/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/newpatient/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/newpatient/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/newpatient/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/note/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/note/new.php + - message: '#^Variable \$obj might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/note/print.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/note/print.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/note/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/note/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/note/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/note/save.php + - message: '#^Variable \$obj might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/forms/note/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/note/view.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/note/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_default might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_extremely might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_form_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_form_title might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_more might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_nearly might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_nosave_confirm might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_not might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_q10 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_q10_2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_several might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_somewhat might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$str_very might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$viewmode might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/phq9/common.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/phq9/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/phq9/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/phq9/save.php + - message: '#^Variable \$issue might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/physical_exam/edit_diagnoses.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/physical_exam/new.php + - message: '#^Variable \$pelines might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/physical_exam/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/physical_exam/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/physical_exam/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/physical_exam/new.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/physical_exam/new.php + - message: '#^Constructor of class FormPriorAuth has an unused parameter \$_prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../interface/forms/prior_auth/FormPriorAuth.class.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/prior_auth/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/prior_auth/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/prior_auth/view.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/procedure_order/common.php + - message: '#^Variable \$isDorn might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/procedure_order/common.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../interface/forms/procedure_order/common.php + - message: '#^Variable \$ppid on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/forms/procedure_order/common.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/procedure_order/common.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/procedure_order/common.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/procedure_order/common.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/procedure_order/delete.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/procedure_order/delete.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/procedure_order/delete.php + - message: '#^Variable \$i might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/procedure_order/templates/procedure_reason_row.php + - message: '#^Variable \$reasonCodeStatii might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/procedure_order/templates/procedure_reason_row.php + - message: '#^Variable \$do_warning might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php + - message: '#^Variable \$mode might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/questionnaire_assessments/save.php + - message: '#^Variable \$formid in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/forms/questionnaire_assessments/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/questionnaire_assessments/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/questionnaire_assessments/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/questionnaire_assessments/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/requisition/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/reviewofs/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/reviewofs/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/reviewofs/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/reviewofs/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/reviewofs/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/reviewofs/save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/reviewofs/view.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/reviewofs/view.php + - message: '#^Constructor of class FormROS has an unused parameter \$_prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../interface/forms/ros/FormROS.class.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ros/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ros/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/ros/view.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/sdoh/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/sdoh/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/sdoh/save.php + - message: '#^Variable \$formid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/sdoh/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/sdoh/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/sdoh/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/sdoh/save.php + - message: '#^Constructor of class FormSOAP has an unused parameter \$_prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../interface/forms/soap/FormSOAP.class.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/soap/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/soap/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/soap/view.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/create.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/create.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/track_anything/create.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/track_anything/create.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/forms/track_anything/create.php + - message: '#^Variable \$fromencounter might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/track_anything/history.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/history.php + - message: '#^Variable \$row might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/history.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/history.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/track_anything/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/track_anything/new.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/new.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/track_anything/new.php + - message: '#^Variable \$showbutton might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/track_anything/report.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/transfer_summary/new.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/transfer_summary/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/transfer_summary/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/transfer_summary/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/transfer_summary/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/transfer_summary/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/transfer_summary/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/transfer_summary/save.php + - message: '#^Variable \$disabled might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/treatment_plan/new.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/treatment_plan/new.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/treatment_plan/new.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/treatment_plan/new.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/treatment_plan/new.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/treatment_plan/save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/treatment_plan/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/treatment_plan/save.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms/treatment_plan/save.php + - message: '#^Variable \$results might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/C_FormVitals.class.php + - message: '#^Variable \$HC_delta_x might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$HC_delta_y might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$HC_dot_x might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$HC_dot_y might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$HT_delta_x might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$HT_x might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$HToffset might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$WT_delta_y might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$WT_y might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$WToffset might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$age might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$age_in_months might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$ageinYMD might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$bmi might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$bmi_delta_x might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$bmi_delta_y might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$bmi_dot_x might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$bmi_dot_y might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$chart might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$chartCss1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$chartCss2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$datatable2_bmi_offset might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$datatable2_hc_offset might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$datatable_bmi_offset might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$datatable_hc_offset might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$dob might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$pid in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/forms/vitals/growthchart/chart.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/vitals/new.php + - message: '#^Variable \$bps might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/vitals/report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/vitals/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/forms/vitals/view.php + - message: '#^Variable \$inDir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/forms_admin/forms_admin.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/forms_admin/forms_admin.php + - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/globals.php + - message: '#^Variable \$portal_temp_css_theme_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/globals.php + - message: '#^Variable \$temp_css_theme_name might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/globals.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/globals.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/help_modal.php + - message: '#^Variable \$create might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/language/csv/translation_utilities.php + - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/language/lang_definition.php + - message: '#^Variable \$go might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/language/lang_definition.php + - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/language/lang_manage.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/language/language.php + - message: '#^Variable \$openemr_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/login/login.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/login_screen.php + - message: '#^Variable \$getevent might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/logview/logview.php + - message: '#^Variable \$openemr_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/about_page.php + - message: '#^Variable \$authorize might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$groupname might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$result1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$result2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$result3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$result4 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$tmore might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations.php + - message: '#^Variable \$authorize might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/authorizations/authorizations_full.php + - message: '#^Variable \$groupname might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/authorizations/authorizations_full.php + - message: '#^Variable \$result3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations_full.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations_full.php + - message: '#^Variable \$tback might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/authorizations/authorizations_full.php + - message: '#^Function gzopen64 not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/main/backup.php + - message: '#^Variable \$UOR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/backup.php + - message: '#^Variable \$datatypes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/backup.php + - message: '#^Variable \$sources might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/backup.php + - message: '#^Variable \$sqlconf might not be defined\.$#' + identifier: variable.undefined + count: 46 + path: ../interface/main/backup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/backup.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/backup.php + - message: '#^Variable \$zipname might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/backup.php + - message: '#^Variable \$sqlconf might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/main/backuplog.php + - message: '#^Variable \$duration might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$e2f might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$endtime might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$event_date might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$exdates in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$locationspec might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$multiple_value might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$my_recurrtype might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$new_eid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$noRecurrspec might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$providers_current might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$recurrence_end_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$recurrspec might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$starttime might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/main/calendar/add_edit_event.php + - message: '#^Variable \$isProv might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/find_appt_popup.php + - message: '#^Variable \$providerid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/find_appt_popup.php + - message: '#^Variable \$slots might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/find_appt_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/find_appt_popup.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/find_group_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/find_group_popup.php + - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/main/calendar/find_patient_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/find_patient_popup.php + - message: '#^Variable \$_GLOBALS might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/calendar/includes/pnAPI.php + - message: '#^Method pnHTML\:\:EndPage\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:FormEnd\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:FormHidden\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:FormSelectMultiple\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:FormStart\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:FormSubmit\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:Linebreak\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:StartPage\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Method pnHTML\:\:Text\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Path in include\(\) "footer\.php" is not a file or it does not exist\.$#' + identifier: include.fileNotFound + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Path in include\(\) "header\.php" is not a file or it does not exist\.$#' + identifier: include.fileNotFound + count: 1 + path: ../interface/main/calendar/includes/pnHTML.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/index.php + - message: '#^Constant _CALAPR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALAUG not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALDEC not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALFEB not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALJAN not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALJUL not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALJUN not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALMAR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALMAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALNOV not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALOCT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _CALSEP not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _PC_OL_CLOSE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Variable \$pcDir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/calendar/modules/PostCalendar/common.api.php + - message: '#^Constant _SETTING_DATE_FORMAT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _SETTING_DAY_HICOLOR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _SETTING_DISPLAY_TOPICS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _SETTING_TEMPLATE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _SETTING_TIME_24HOUR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _SETTING_USE_INT_DATES not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _SETTING_USE_POPUPS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Variable \$template_view in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php + - message: '#^Constant _PC_LOCALE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_format.php + - message: '#^Constant _SETTING_DATE_FORMAT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_format.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_format.php + - message: '#^Constant _CAL_DAYVIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Constant _CAL_MONTHVIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Constant _CAL_WEEKVIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Constant _CAL_YEARVIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Constant _PC_JUMP_MENU_SUBMIT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Variable \$d in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Variable \$m in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Variable \$viewtype in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Variable \$y in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php + - message: '#^Constant _PC_FILTER_CATEGORY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _PC_FILTER_TOPIC not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _PC_FILTER_USERS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _PC_FILTER_USERS_ALL not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _PC_TPL_VIEW_SUBMIT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _SETTING_DISPLAY_TOPICS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _SETTING_TEMPLATE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Variable \$catoptions might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Variable \$class might not be defined\.$#' + identifier: variable.undefined + count: 11 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Variable \$pcTemplate in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Variable \$useroptions might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Variable \$viewtype in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php + - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_form_nav_close.php + - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_form_nav_open.php + - message: '#^Constant _SETTING_USE_POPUPS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_popup.php + - message: '#^Variable \$sticky might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_popup.php + - message: '#^Variable \$text might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_popup.php + - message: '#^Variable \$function might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php + - message: '#^Variable \$order might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php + - message: '#^Variable \$sort might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php + - message: '#^Variable \$value might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php + - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php + - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' + identifier: constant.notFound + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php + - message: '#^Variable \$link might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php + - message: '#^Variable \$localpath might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php + - message: '#^Variable \$setdeftime might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php + - message: '#^Constant _PC_TPL_VIEW_SUBMIT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Constant _SETTING_TEMPLATE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Variable \$d in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Variable \$m in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Variable \$pcTemplate in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Variable \$viewtype in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Variable \$y in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php + - message: '#^Constant _PC_LOCALE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/modifier.pc_date_format.php + - message: '#^Constant _SETTING_DATE_FORMAT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/modifier.pc_date_format.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/plugins/modifier.pc_date_format.php + - message: '#^Constant _ACO not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _EDIT_PC_CONFIG_CATDETAILS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _EDIT_PC_CONFIG_CATEGORIES not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_ACTIVE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_ADD_CAT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_ALL_DAY_CAT_NO not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_ALL_DAY_CAT_TITLE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_ALL_DAY_CAT_YES not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_ARE_YOU_SURE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CACHE_CLEARED not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CATS_CONFIRM not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_CLINIC not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_COLOR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_CONSTANT_ID not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_DELETE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_DESC not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_DESC_XL not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_DUR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_NAME not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_NAME_XL not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_PATIENT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_PROVIDER not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_THERAPY_GROUP not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CAT_TYPE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_CLEAR_CACHE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_COLOR_PICK_TITLE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_DELETE_CATS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_DURATION_HOUR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_DURATION_MIN not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_END_DATE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_1ST not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_2ND not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_3RD not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_4TH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_DAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_FOURTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_FRI not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_LAST not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_MON not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_MONTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_OTHER not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_SAT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_SUN not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_THIRD not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_THU not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_TUE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_WED not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_WEEK not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_WORKDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_EVERY_YEAR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_MODIFY_CATS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_MONTHS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_NEW_CAT_TITLE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_NEW_CAT_TITLE_S not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_NO_END not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_NO_REPEAT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_OF_EVERY_2MONTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_OF_EVERY_3MONTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_OF_EVERY_4MONTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_OF_EVERY_6MONTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_OF_EVERY_MONTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_OF_EVERY_YEAR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_OF_THE_MONTH not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_REPEAT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_REPEATING_HEADER not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_REPEAT_ON not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_REP_CAT_TITLE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_REP_CAT_TITLE_S not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_SEQ not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Constant _PC_TEST_SYSTEM not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Undefined variable\: \$msg$#' + identifier: variable.undefined + count: 7 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Variable \$dels might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Variable \$msg on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Variable \$new_recurrfreq on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Variable \$newnam in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php + - message: '#^Variable \$aco might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$active might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$color might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$constantid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$desc might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$duration might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$end_all_day might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$end_date_flag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$end_date_freq might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$end_date_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$limitid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$recurrfreq might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$repeat might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$sequence might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$spec might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$value_cat_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php + - message: '#^Variable \$cDay might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pntemplates/default/views/monthSelector.php + - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Constant _SETTING_DISPLAY_TOPICS not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Constant _SETTING_TEMPLATE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Constant _SETTING_USE_INT_DATES not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Undefined variable\: \$day$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Undefined variable\: \$month$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Undefined variable\: \$sqlKeywords$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$ProviderID in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$day on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$end in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$month on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$pc_category in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$pc_facility in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$pc_topic in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$s_category in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$s_topic in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$sqlKeywords in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$start in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$submit in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 3 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$tmpDate in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Variable \$year on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuser.php + - message: '#^Constant _CALAPR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALAUG not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALDEC not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALFEB not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALFRIDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALFRIDAYSHORT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALJAN not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALJUL not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALJUN not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALMAR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALMAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALMONDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALMONDAYSHORT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALNOV not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALOCT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALSATURDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALSATURDAYSHORT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALSEP not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALSUNDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALSUNDAYSHORT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALTHURSDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALTHURSDAYSHORT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALTUESDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALTUESDAYSHORT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALWEDNESDAY not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _CALWEDNESDAYSHORT not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _SETTING_FIRST_DAY_WEEK not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _SETTING_TEMPLATE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _USER_BUSY_MESSAGE not found\.$#' + identifier: constant.notFound + count: 4 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Constant _USER_BUSY_TITLE not found\.$#' + identifier: constant.notFound + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$cacheid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$category in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$ending_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$etime might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$event_status might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$nuke_users might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$patient_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$pc_username in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$provider_id might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$s_keywords in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$starting_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$stime might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$template_view in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$topic in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$userid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$viewtype might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php + - message: '#^Variable \$pnconfig might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/calendar/pntables.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/dated_reminders/dated_reminders.php + - message: '#^Variable \$ReminderSent might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/dated_reminders/dated_reminders_add.php + - message: '#^Variable \$patientID in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/dated_reminders/dated_reminders_add.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/dated_reminders/dated_reminders_add.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/dated_reminders/dated_reminders_add.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/dated_reminders/dated_reminders_log.php + - message: '#^Variable \$dates might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/display_documents.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/display_documents.php + - message: '#^Variable \$result in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/main/finder/document_select.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/finder/dynamic_finder.php + - message: '#^Variable \$aColumns might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/main/finder/dynamic_finder_ajax.php + - message: '#^Variable \$results might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/finder/multi_patients_finder.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/finder/multi_patients_finder.php + - message: '#^Variable \$results might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/finder/multi_patients_finder_ajax.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/finder/multi_patients_finder_ajax.php + - message: '#^Variable \$add_days might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$extracols might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$itemized_test_id might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$numerator_label might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$pass_id might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$report_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$where in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/finder/patient_select.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/ippf_export.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/main_screen.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/lab_results_messages.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/messages/lab_results_messages.php + - message: '#^Variable \$where might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/lab_results_messages.php + - message: '#^Variable \$background might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$body might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$cursor might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$message_legend might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$reply_to in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$title in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/messages.php + - message: '#^Variable \$prov_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/print_postcards.php + - message: '#^Function updateMessage not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/main/messages/save.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/save.php + - message: '#^Variable \$facilities might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/save.php + - message: '#^Variable \$providers might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/save.php + - message: '#^Variable \$results might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/messages/save.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/messages/save.php + - message: '#^Variable \$enc_list in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/main/messages/templates/linked_documents.php + - message: '#^Variable \$row might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/templates/linked_documents.php + - message: '#^Variable \$documentId might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/messages/trusted-messages-ajax.php + - message: '#^Variable \$error might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/messages/trusted-messages-ajax.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/messages/trusted-messages-ajax.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/messages/trusted-messages-ajax.php + - message: '#^Variable \$recipient might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/main/messages/trusted-messages-ajax.php + - message: '#^Variable \$requested_by might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/messages/trusted-messages-ajax.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/trusted-messages.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/messages/trusted-messages.php + - message: '#^Variable \$tmore might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/onotes/office_comments.php + - message: '#^Variable \$any_search_class might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$dispatcher might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$fileroot might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$openemr_name might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$search_any_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$search_globals_class might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/main/tabs/main.php + - message: '#^Variable \$classes on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/main/tabs/templates/patient_data_template.php + - message: '#^Variable \$classLoader might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/openemr.bootstrap.php + - message: '#^Variable \$eventDispatcher might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/openemr.bootstrap.php + - message: '#^Class OpenEMR\\Modules\\ClaimRevConnector\\CustomSkeletonFHIRResourceService not found\.$#' + identifier: class.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/Bootstrap.php + - message: '#^Access to an undefined property OpenEMR\\Modules\\ClaimRevConnector\\ConnectivityInfo\:\:\$token\.$#' + identifier: property.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/ConnectivityInfo.php + - message: '#^Variable \$revenueTools might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/EligibilityObjectCreator.php + - message: '#^Access to undefined constant OpenEMR\\Modules\\ClaimRevConnector\\GlobalConfig\:\:CONFIG_OPTION_ENCRYPTED\.$#' + identifier: classConstant.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/GlobalConfig.php + - message: '#^Access to undefined constant OpenEMR\\Modules\\ClaimRevConnector\\GlobalConfig\:\:CONFIG_OPTION_TEXT\.$#' + identifier: classConstant.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/GlobalConfig.php + - message: '#^Variable \$benefit might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/additional_info.php + - message: '#^Variable \$benefits might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/benefit.php + - message: '#^Variable \$benefit might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/date_information.php + - message: '#^Variable \$eligibilityData might not be defined\.$#' + identifier: variable.undefined + count: 20 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/deductibles.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/eligibility.php + - message: '#^Variable \$benefit might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/identifier_info.php + - message: '#^Variable \$eligibilityData might not be defined\.$#' + identifier: variable.undefined + count: 22 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/medicare_info.php + - message: '#^Variable \$benefit might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/messages.php + - message: '#^Variable \$tab might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/navbar.php + - message: '#^Variable \$benefit might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/procedure_info.php + - message: '#^Variable \$eligibilityData might not be defined\.$#' + identifier: variable.undefined + count: 69 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/quick_info.php + - message: '#^Variable \$receiver might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/receiver.php + - message: '#^Variable \$benefit might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/related_entity.php + - message: '#^Variable \$benefit might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/service_delivery.php + - message: '#^Variable \$source might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/source.php + - message: '#^Variable \$subscriberPatient might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/subscriber_patient.php + - message: '#^Variable \$data might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/validation.php + - message: '#^Variable \$eligibilityData might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/validation.php + - message: '#^Variable \$classLoader might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/openemr.bootstrap.php + - message: '#^Variable \$eventDispatcher might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/openemr.bootstrap.php + - message: '#^Variable \$_GET on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/public/index-portal.php + - message: '#^Variable \$_REQUEST on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/public/index.php + - message: '#^Variable \$user might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/src/Controller/TeleHealthVideoRegistrationController.php + - message: '#^Variable \$userSaveRecord might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/src/Services/TeleHealthRemoteRegistrationService.php + - message: '#^Constructor of class Comlink\\OpenEMR\\Modules\\TeleHealthModule\\TelehealthGlobalConfig has an unused parameter \$moduleDirectoryName\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/src/TelehealthGlobalConfig.php + - message: '#^Variable \$classLoader might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/openemr.bootstrap.php + - message: '#^Variable \$eventDispatcher might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/openemr.bootstrap.php + - message: '#^Variable \$datas might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/public/lab_setup.php + - message: '#^Variable \$data might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/public/primary_config_edit.php + - message: '#^Variable \$npi might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/public/primary_config_edit.php + - message: '#^Undefined variable\: \$$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/AddressBookAddEdit.php + - message: '#^Class OpenEMR\\Modules\\Dorn\\CustomSkeletonFHIRResourceService not found\.$#' + identifier: class.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/Bootstrap.php + - message: '#^Variable \$D might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-dorn/src/DornGenHl7Order.php + - message: '#^Variable \$segment might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/DornGenHl7Order.php + - message: '#^Variable \$segment might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-dorn/src/GenHl7OrderBase.php + - message: '#^Access to undefined constant OpenEMR\\Modules\\Dorn\\GlobalConfig\:\:CONFIG_OPTION_ENCRYPTED\.$#' + identifier: classConstant.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/GlobalConfig.php + - message: '#^Access to undefined constant OpenEMR\\Modules\\Dorn\\GlobalConfig\:\:CONFIG_OPTION_TEXT\.$#' + identifier: classConstant.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/GlobalConfig.php + - message: '#^Undefined variable\: \$arep$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-dorn/src/ReceiveHl7Results.php + - message: '#^Undefined variable\: \$log$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/ReceiveHl7Results.php + - message: '#^Undefined variable\: \$prpath$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/ReceiveHl7Results.php + - message: '#^Property OpenEMR\\Modules\\Dorn\\models\\OrderStatusViewModel\:\:\$createdDateTimeUtc has unknown class OpenEMR\\Modules\\Dorn\\models\\DateTime as its type\.$#' + identifier: class.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-dorn/src/models/OrderStatusViewModel.php + - message: '#^Variable \$tab might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/modules/custom_modules/oe-module-dorn/templates/navbar.php + - message: '#^Variable \$classLoader might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/openemr.bootstrap.php + - message: '#^Variable \$eventDispatcher might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/openemr.bootstrap.php + - message: '#^Variable \$taskId might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/public/index.php + - message: '#^Variable \$localColumnName in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Models/ExportState.php + - message: '#^Variable \$currentDocumentSize might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php + - message: '#^Variable \$job might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php + - message: '#^Variable \$pidSlice might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php + - message: '#^Variable \$tasks might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php + - message: '#^Variable \$file_mime on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php + - message: '#^Variable \$interface_pid on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php + - message: '#^Variable \$isEmail on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php + - message: '#^Variable \$isFax on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php + - message: '#^Variable \$isSMS on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php + - message: '#^Variable \$route on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/index.php + - message: '#^Variable \$args on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/library/rc_sms_notification.php + - message: '#^Variable \$cred might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/library/rc_sms_notification.php + - message: '#^Variable \$db_patient on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/library/rc_sms_notification.php + - message: '#^Variable \$selectedService might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/library/setup_services.php + - message: '#^Variable \$vendors on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/library/setup_services.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/library/utility.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-faxsms/library/utility.php + - message: '#^Variable \$tabTitle on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/messageUI.php + - message: '#^Variable \$classLoader might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/openemr.bootstrap.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/setup_rc.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/setup_voice.php + - message: '#^Caught class OpenEMR\\Modules\\FaxSMS\\Controller\\Exception not found\.$#' + identifier: class.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php + - message: '#^Constructor of class OpenEMR\\Modules\\FaxSMS\\Controller\\AppDispatch has an unused parameter \$type\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php + - message: '#^Variable \$route on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php + - message: '#^Variable \$setup in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php + - message: '#^Access to an undefined property OpenEMR\\Modules\\FaxSMS\\Controller\\EmailClient\:\:\$appKey\.$#' + identifier: property.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/EmailClient.php + - message: '#^Access to an undefined property OpenEMR\\Modules\\FaxSMS\\Controller\\EmailClient\:\:\$appSecret\.$#' + identifier: property.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/EmailClient.php + - message: '#^Access to an undefined property OpenEMR\\Modules\\FaxSMS\\Controller\\EmailClient\:\:\$sid\.$#' + identifier: property.notFound + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/EmailClient.php + - message: '#^Variable \$content in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/RCFaxClient.php + - message: '#^Variable \$pname might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/RCFaxClient.php + - message: '#^Variable \$response might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/RCFaxClient.php + - message: '#^Variable \$responseMsgs in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/TwilioSMSClient.php + - message: '#^Variable \$tz in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/EtherFax/EtherFaxClient.php + - message: '#^Variable \$data on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Events/NotificationEventListener.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Events/NotificationEventListener.php + - message: '#^Variable \$user on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/modules/custom_modules/oe-module-faxsms/src/Events/NotificationEventListener.php + - message: '#^Variable \$classLoader might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/openemr.bootstrap.php + - message: '#^Variable \$eventDispatcher might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/openemr.bootstrap.php + - message: '#^Variable \$id in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Bootstrap.php + - message: '#^Variable \$is_saved might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/LogImportBuild.php + - message: '#^Variable \$line in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/LogImportBuild.php + - message: '#^Variable \$sub on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/LogImportBuild.php + - message: '#^Variable \$provider_info on left side of \?\?\= always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/ModuleService.php + - message: '#^Variable \$patient_info on left side of \?\?\= always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php + - message: '#^Variable \$provider_info on left side of \?\?\= always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php + - message: '#^Variable \$relation on left side of \?\?\= always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php + - message: '#^Variable \$newKey in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/src/Services/WenoValidate.php + - message: '#^Variable \$backGroundTask on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/templates/download_log_viewer.php + - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/templates/download_log_viewer.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/custom_modules/oe-module-weno/templates/indexrx.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/templates/indexrx.php + - message: '#^Variable \$vendors on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/templates/weno_setup.php + - message: '#^Variable \$usersData might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/custom_modules/oe-module-weno/templates/weno_users.php + - message: '#^Variable \$array_active_modules might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Acl/src/Acl/Controller/AclController.php + - message: '#^Call to an undefined method Application\\Controller\\IndexController\:\:CommonPlugin\(\)\.$#' + identifier: method.notFound + count: 1 + path: ../interface/modules/zend_modules/module/Application/src/Application/Controller/IndexController.php + - message: '#^Call to an undefined method Application\\Controller\\SendtoController\:\:escapeHtml\(\)\.$#' + identifier: method.notFound + count: 2 + path: ../interface/modules/zend_modules/module/Application/src/Application/Controller/SendtoController.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php + - message: '#^Variable \$rowCount might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php + - message: '#^Variable \$rows might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Application/src/Application/Plugin/CommonPlugin.php + - message: '#^Call to an undefined method Carecoordination\\Controller\\CarecoordinationController\:\:CommonPlugin\(\)\.$#' + identifier: method.notFound + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CarecoordinationController.php + - message: '#^Call to an undefined method Carecoordination\\Controller\\CarecoordinationController\:\:Documents\(\)\.$#' + identifier: method.notFound + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CarecoordinationController.php + - message: '#^Variable \$his_tob_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CarecoordinationController.php + - message: '#^Call to an undefined method Carecoordination\\Controller\\CcdController\:\:updateDocumentCategoryUsingCatname\(\)\.$#' + identifier: method.notFound + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CcdController.php + - message: '#^Undefined variable\: \$combination$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncounterccdadispatchController.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncounterccdadispatchController.php + - message: '#^Call to an undefined method Carecoordination\\Controller\\EncountermanagerController\:\:CommonPlugin\(\)\.$#' + identifier: method.notFound + count: 5 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncountermanagerController.php + - message: '#^Variable \$combination might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncountermanagerController.php + - message: '#^Constructor of class Carecoordination\\Form\\ModuleconfigForm has an unused parameter \$dbAdapter\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Form/ModuleconfigForm.php + - message: '#^Variable \$allergy_begdate_value might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Variable \$documentationOf might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Variable \$o_id might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Variable \$pid_exist on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Variable \$provider_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Variable \$res_cur might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Variable \$value might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php + - message: '#^Variable \$str might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdaGenerator.php + - message: '#^Variable \$str1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdaGenerator.php + - message: '#^Variable \$sortPreferences on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdaUserPreferencesTransformer.php + - message: '#^Function display_layout_rows_group_new not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$code_type on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$count might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$details in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$encounter in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$encounter_activity on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$encounter_diagnosis might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$formatted_date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$forms might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$getprovider in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$query might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$res_issues on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$row_patient_data might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$searchClause in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$start_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$time in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 2 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$tmp on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$trans_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$uuid on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php + - message: '#^Variable \$ccda_file might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php + - message: '#^Variable \$ccda_id might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php + - message: '#^Variable \$formatted_date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php + - message: '#^Variable \$res_cur might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php + - message: '#^Variable \$trans_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php + - message: '#^Access to an undefined property Carecoordination\\Model\\ModuleconfigTable\:\:\$applicationTable\.$#' + identifier: property.notFound + count: 1 + path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/ModuleconfigTable.php + - message: '#^Class Ccr\\Model\\CcrTable constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../interface/modules/zend_modules/module/Ccr/config/module.config.php + - message: '#^Call to an undefined method Ccr\\Controller\\CcrController\:\:CommonPlugin\(\)\.$#' + identifier: method.notFound + count: 2 + path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Controller/CcrController.php + - message: '#^Variable \$active might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Model/CcrTable.php + - message: '#^Variable \$activity might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Model/CcrTable.php + - message: '#^Call to an undefined method Documents\\Controller\\DocumentsController\:\:Documents\(\)\.$#' + identifier: method.notFound + count: 2 + path: ../interface/modules/zend_modules/module/Documents/src/Documents/Controller/DocumentsController.php + - message: '#^Variable \$style might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Documents/src/Documents/Controller/DocumentsController.php + - message: '#^Call to an undefined method Immunization\\Controller\\ImmunizationController\:\:CommonPlugin\(\)\.$#' + identifier: method.notFound + count: 9 + path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Controller/ImmunizationController.php + - message: '#^Variable \$rows might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Controller/ImmunizationController.php + - message: '#^Constructor of class Immunization\\Form\\ImmunizationForm has an unused parameter \$name\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Form/ImmunizationForm.php + - message: '#^Variable \$res_cur might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php + - message: '#^Variable \$val might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php + - message: '#^Variable \$curr_html_tag might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php + - message: '#^Variable \$div on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php + - message: '#^Variable \$status might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php + - message: '#^Variable \$v_major might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php + - message: '#^Variable \$v_minor might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php + - message: '#^Variable \$v_patch might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php + - message: '#^Variable \$modArr might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTable.php + - message: '#^Variable \$ret_str might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTable.php + - message: '#^Variable \$aclSetupFlag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/PatientFilter/acl/acl_setup.php + - message: '#^Variable \$aclSetupFlag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/PatientFilter/acl/acl_upgrade.php + - message: '#^Variable \$drug_test_count might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/PatientFlowBoard/src/PatientFlowBoard/Listener/PatientFlowBoardEventsSubscriber.php + - message: '#^Variable \$p might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/PrescriptionTemplates/src/PrescriptionTemplates/Controller/PrescriptionTemplatesController.php + - message: '#^Call to an undefined method Syndromicsurveillance\\Controller\\SyndromicsurveillanceController\:\:CommonPlugin\(\)\.$#' + identifier: method.notFound + count: 3 + path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Controller/SyndromicsurveillanceController.php + - message: '#^Variable \$formatted_date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php + - message: '#^Variable \$res_cur might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php + - message: '#^Variable \$text might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php + - message: '#^Variable \$BS_COL_CLASS might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/new/new_comprehensive.php + - message: '#^Variable \$date_init might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/new/new_comprehensive.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/new/new_comprehensive.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/new/new_comprehensive_save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/new/new_comprehensive_save.php + - message: '#^Variable \$alertmsg might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/new/new_patient_save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/new/new_patient_save.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/new/new_patient_save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/new/new_patient_save.php + - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/new/new_search_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/new/new_search_popup.php + - message: '#^Variable \$codes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/find_order_popup.php + - message: '#^Variable \$proctype_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/find_order_popup.php + - message: '#^Variable \$ptrow might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/orders/find_order_popup.php + - message: '#^Variable \$sub might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/find_order_popup.php + - message: '#^Variable \$testid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/find_order_popup.php + - message: '#^Variable \$transport might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/find_order_popup.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/find_order_popup.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/gen_hl7_order.inc.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/orders/list_reports.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/list_reports.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/orders/list_reports.php + - message: '#^Variable \$ptid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/orders/load_compendium.php + - message: '#^Variable \$insco in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/orders/order_manifest.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/orders/order_manifest.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/orders/orders_results.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/orders/orders_results.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/orders/patient_match_dialog.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/orders/pending_orders.php + - message: '#^Variable \$optionsStr on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/orders/procedure_provider_edit.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/procedure_provider_edit.php + - message: '#^Variable \$help_icon might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/procedure_provider_list.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/procedure_provider_list.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/procedure_stats.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/procedure_stats.php + - message: '#^Instantiated class QuestResultClient not found\.$#' + identifier: class.notFound + count: 1 + path: ../interface/orders/receive_hl7_results.inc.php + - message: '#^Undefined variable\: \$arep$#' + identifier: variable.undefined + count: 2 + path: ../interface/orders/receive_hl7_results.inc.php + - message: '#^Undefined variable\: \$patient_id$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/single_order_results.inc.php + - message: '#^Variable \$aNotes in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/orders/single_order_results.inc.php + - message: '#^Function cms_portal_call not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/orders/single_order_results.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/orders/single_order_results.php + - message: '#^Variable \$help_icon might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/types.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/types.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/types_edit.php + - message: '#^Variable \$title might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/orders/types_edit.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/addr_label.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/barcode_label.php + - message: '#^Variable \$type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/barcode_label.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/download_template.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/download_template.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/download_template.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/education.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/education.php + - message: '#^Variable \$counter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/cash_receipt.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/cash_receipt.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/encounter/cash_receipt.php + - message: '#^Variable \$raw_encounter_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/cash_receipt.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/encounter/cash_receipt.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/coding.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/coding.php + - message: '#^Variable \$all might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/copay.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/copay.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/delete_form.php + - message: '#^Variable \$incdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/delete_form.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/delete_form.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/delete_form.php + - message: '#^Variable \$counter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/patient_file/encounter/diagnosis.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/patient_file/encounter/diagnosis.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis.php + - message: '#^Variable \$tback might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis.php + - message: '#^Variable \$tmore might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/diagnosis.php + - message: '#^Variable \$code might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$counter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$tback might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$text might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/diagnosis_full.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/encounter_bottom.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/encounter_top.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/encounter_top.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/encounter_top.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/find_code_dynamic.php + - message: '#^Variable \$code_external_tables might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$codetype might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$fe_array might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$from might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$include_inactive might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$sellist might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$source might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$where1 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/find_code_history.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/find_code_popup.php + - message: '#^Variable \$attendant_type might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 23 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$groupId might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 19 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$therapy_group might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/forms.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/search_code.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/search_code.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/search_code.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/select_codes.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_codes.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/superbill_codes.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/superbill_codes.php + - message: '#^Variable \$tback might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_codes.php + - message: '#^Variable \$tmore might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_codes.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/encounter/superbill_codes.php + - message: '#^Variable \$code might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$code_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$code_type_name_external might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$filter_key might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$modifier might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$res might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$taxrates might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/encounter/superbill_custom_full.php + - message: '#^Variable \$incdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/encounter/trend_form.php + - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$cryptoGen might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$form_pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$payment_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$session_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/front_payment.php + - message: '#^Variable \$ccaudit might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/front_payment_cc.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/front_payment_cc.php + - message: '#^Variable \$response might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/front_payment_cc.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/history/encounters.php + - message: '#^Variable \$attendant_type might not be defined\.$#' + identifier: variable.undefined + count: 13 + path: ../interface/patient_file/history/encounters.php + - message: '#^Variable \$dres might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/history/encounters.php + - message: '#^Variable \$encounter_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/history/encounters.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 22 + path: ../interface/patient_file/history/encounters.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/history/encounters.php + - message: '#^Variable \$therapy_group might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/history/encounters.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/history/encounters_ajax.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/history/history.php + - message: '#^Variable \$list_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/history/history.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/history/history.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/history/history.php + - message: '#^Variable \$date_init might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/history/history_full.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/history/history_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/history/history_full.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/history/history_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/history/history_save.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/history/history_save.php + - message: '#^Variable \$last might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/label.php + - message: '#^Variable \$pdf might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/label.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/label.php + - message: '#^Variable \$bodytext might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/patient_file/letter.php + - message: '#^Variable \$from_title on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/patient_file/letter.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/letter.php + - message: '#^Variable \$to_title on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/patient_file/letter.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/manage_dup_patients.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/merge_patients.php + - message: '#^Variable \$source on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/patient_file/merge_patients.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/merge_patients.php + - message: '#^Variable \$tables might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/merge_patients.php + - message: '#^Variable \$target on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/patient_file/merge_patients.php + - message: '#^Function generateCheckoutReceipt not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 2 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$contraception_billing_code might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$form_num_amount_columns might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$form_num_method_columns might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$form_num_ref_columns might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$form_num_type_columns might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$num_optional_columns might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$thisdate might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/pos_checkout_ippf.php + - message: '#^Variable \$amount might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/pos_checkout_normal.php + - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/patient_file/pos_checkout_normal.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/pos_checkout_normal.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/pos_checkout_normal.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/pos_checkout_normal.php + - message: '#^Path in include_once\(\) "\.\./\.\./custom/fee_sheet_codes\.php" is not a file or it does not exist\.$#' + identifier: includeOnce.fileNotFound + count: 1 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$pages might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$patdata might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/printed_fee_sheet.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/problem_encounter.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/problem_encounter.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/problem_encounter.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/reminder/active_reminder_popup.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/reminder/active_reminder_popup.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/reminder/clinical_reminders.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/reminder/clinical_reminders.php + - message: '#^Variable \$rules_default might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/reminder/patient_reminders.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/reminder/patient_reminders.php + - message: '#^Caught class MpdfException not found\.$#' + identifier: class.notFound + count: 2 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Function cms_portal_call not found\.$#' + identifier: function.notFound + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$from_file_tmp_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$insurance_data_array might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 23 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$prevIssueType might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$tback might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$tmp_files_remove might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/custom_report.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/patient_report.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/report/patient_report.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/patient_file/report/patient_report.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/report/patient_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/report/patient_report.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/rules/patient_data.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/rules/patient_data.php + - message: '#^Variable \$amendment_desc might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/add_edit_amendments.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/add_edit_amendments.php + - message: '#^Variable \$resultSet might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/add_edit_amendments.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/add_edit_amendments.php + - message: '#^Variable \$ISSUE_CLASSIFICATIONS might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/add_edit_issue.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/add_edit_issue.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/add_edit_issue.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/add_edit_issue.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/add_edit_issue.php + - message: '#^Variable \$form_adreviewed might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/advancedirectives.php + - message: '#^Variable \$form_completedad might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/advancedirectives.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/advancedirectives.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/advancedirectives.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/browse.php + - message: '#^Variable \$tback might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/browse.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/clinical_reminders_fragment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/clinical_reminders_fragment.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/patient_file/summary/create_portallogin.php + - message: '#^Variable \$oemr_ui might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/dashboard_header.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/dashboard_header.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/dashboard_header.php + - message: '#^Variable \$expand_icon_class might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/dashboard_header_simple_return.php + - message: '#^Variable \$expand_title might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/dashboard_header_simple_return.php + - message: '#^Variable \$expandable might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/dashboard_header_simple_return.php + - message: '#^Variable \$go_back_href might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/dashboard_header_simple_return.php + - message: '#^Variable \$header_title might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/dashboard_header_simple_return.php + - message: '#^Variable \$help_icon might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/dashboard_header_simple_return.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/dashboard_header_simple_return.php + - message: '#^Class OpenEMR\\Menu\\PatientMenuRole constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Class OpenEMR\\Patient\\Cards\\PortalCard constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$apptStyle2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$appts might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$bgColor might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$extraApptDate might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$firstApptIndx might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$num_of_days might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$past_appts might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$query might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$resNotNull might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$therapyGroupCategories might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$vitals_form_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/demographics.php + - message: '#^Variable \$condition_str might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics_full.php + - message: '#^Variable \$date_init might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics_full.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/patient_file/summary/demographics_full.php + - message: '#^Path in include\(\) "\.\./\.\./\.\./custom/demographics_print\.php" is not a file or it does not exist\.$#' + identifier: include.fileNotFound + count: 1 + path: ../interface/patient_file/summary/demographics_print.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/demographics_print.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/demographics_print.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics_print.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/demographics_print.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/demographics_save.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/disc_fragment.php + - message: '#^Variable \$active might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/disclosure_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/summary/disclosure_full.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/disclosure_full.php + - message: '#^Variable \$administered_by might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$code might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$code_text might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$code_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$immunization_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$imo_criteria_value might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$observation_criteria might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$observation_criteria_value might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$vis_presented_dateval might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$vis_published_dateval might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/immunizations.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/insurance_edit.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/summary/insurance_edit.php + - message: '#^Variable \$date_collected might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/labdata.php + - message: '#^Variable \$nothing might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/labdata.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/summary/labdata.php + - message: '#^Variable \$result_code might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/labdata.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/labdata.php + - message: '#^Variable \$the_item might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/labdata.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/labdata.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/labdata_fragment.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/lbf_fragment.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/list_amendments.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/list_amendments.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/patient_reminders_fragment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/patient_reminders_fragment.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/pnotes.php + - message: '#^Variable \$tmore might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/pnotes_fragment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/pnotes_fragment.php + - message: '#^Variable \$notes_sent_count might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_full.php + - message: '#^Variable \$result_count might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_full.php + - message: '#^Variable \$result_sent_count might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_full.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_full_add.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/summary/pnotes_full_add.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_full_add.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/pnotes_print.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/summary/pnotes_print.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/print_amendments.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/print_amendments.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/record_disclosure.php + - message: '#^Undefined variable\: \$title$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/shot_record.php + - message: '#^Variable \$data might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/shot_record.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/shot_record.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/shot_record.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/stats.php + - message: '#^Variable \$kernel might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/stats.php + - message: '#^Variable \$need_head might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/stats.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../interface/patient_file/summary/stats.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/stats.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/stats_full.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/summary/stats_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../interface/patient_file/summary/stats_full.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/track_anything_fragment.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/summary/vitals_fragment.php + - message: '#^Variable \$date_init might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/transaction/add_transaction.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/transaction/add_transaction.php + - message: '#^Variable \$newid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/transaction/add_transaction.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 13 + path: ../interface/patient_file/transaction/add_transaction.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_file/transaction/add_transaction.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/transaction/add_transaction.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_file/transaction/print_referral.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/transaction/print_referral.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/transaction/print_referral.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/transaction/record_request.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/transaction/transactions.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/transaction/transactions.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_file/transaction/transactions.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_file/void_dialog.php + - message: '#^Variable \$MedEx might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$count_facs might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$count_provs might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$current_events might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$from_date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$from_date on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$icon2_here might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$icon_4_CALL might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$icon_extra might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$icon_here might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$icons might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$local might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$ptkr_future_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$reason_visit might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$select_facs might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$select_provs might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$statuses_list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$to_date on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/patient_tracker/patient_tracker.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/patient_tracker/patient_tracker_status.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/procedure_tools/ereqs/ereq_universal_form.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/procedure_tools/ereqs/ereq_universal_form.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/procedure_tools/gen_universal_hl7/gen_hl7_order.inc.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/procedure_tools/labcorp/ereq_form.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/procedure_tools/labcorp/ereq_form.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/procedure_tools/labcorp/gen_hl7_order.inc.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/procedure_tools/quest/gen_hl7_order.inc.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/amc_full_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/amc_tracking.php + - message: '#^Variable \$rems_out might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/appointments_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/appointments_report.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/appt_encounter_report.php + - message: '#^Variable \$res might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/appt_encounter_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/appt_encounter_report.php + - message: '#^Variable \$checkSumNewApi might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/audit_log_tamper_report.php + - message: '#^Variable \$getevent might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/audit_log_tamper_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/cdr_log.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/chart_location_activity.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/chart_location_activity.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/charts_checked_out.php + - message: '#^Variable \$mh_stmt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/clinical_reports.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/clinical_reports.php + - message: '#^Variable \$agecolno might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/collections_report.php + - message: '#^Variable \$ins_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/collections_report.php + - message: '#^Variable \$insposition might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/collections_report.php + - message: '#^Variable \$invlines might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/collections_report.php + - message: '#^Variable \$provider_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/collections_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/collections_report.php + - message: '#^Variable \$report_id on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/reports/cqm.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/cqm.php + - message: '#^Variable \$EXPORT_INC might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$RadioSeperator might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaDataTypeMaster might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaDisplayMaster might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaDisplayRadioMaster might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaIncludeMaster might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaKeyMaster might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaQueryDropDownMaster might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaQueryDropDownMasterDefault might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaQueryDropDownMasterDefaultKey might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TPSCriteriaRadioKeyMaster might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$TextSeperator might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$daysheet might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$daysheet_total might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$provider_run might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/criteria.tab.php + - message: '#^Variable \$insurance_data_array might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/custom_report_range.php + - message: '#^Variable \$patient_data_array might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/custom_report_range.php + - message: '#^Variable \$pids might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../interface/reports/custom_report_range.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/custom_report_range.php + - message: '#^Variable \$selectedFacility in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/reports/daily_summary_report.php + - message: '#^Variable \$selectedProvider in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/reports/daily_summary_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/daily_summary_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/destroyed_drugs_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/encounters_report.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/external_data.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/external_data.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/external_data.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/front_receipts_report.php + - message: '#^Variable \$total1_by_method might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/front_receipts_report.php + - message: '#^Variable \$total2_by_method might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/front_receipts_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/immunization_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/inventory_activity.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/inventory_list.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/inventory_list.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/inventory_transactions.php + - message: '#^Variable \$productleft might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/ippf_cyp_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/ippf_cyp_report.php + - message: '#^Variable \$report_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/ippf_daily.php + - message: '#^Variable \$arr_report in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/reports/ippf_statistics.php + - message: '#^Variable \$form_report might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/ippf_statistics.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/message_list.php + - message: '#^Variable \$openemr_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/non_reported.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/non_reported.php + - message: '#^Variable \$effectiveInsurances might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/pat_ledger.php + - message: '#^Variable \$include_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/pat_ledger.php + - message: '#^Variable \$last_year might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/pat_ledger.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/pat_ledger.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/patient_flow_board_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/patient_list.php + - message: '#^Variable \$observation_description in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/reports/patient_list_creation.php + - message: '#^Variable \$odrstmt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/patient_list_creation.php + - message: '#^Variable \$prescription_drug in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/reports/patient_list_creation.php + - message: '#^Variable \$procedure_diagnosis in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/reports/patient_list_creation.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/patient_list_creation.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/prescriptions_report.php + - message: '#^Undefined variable\: \$invnumber$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/receipts_by_method_report.php + - message: '#^Variable \$b in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 2 + path: ../interface/reports/receipts_by_method_report.php + - message: '#^Variable \$key in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../interface/reports/receipts_by_method_report.php + - message: '#^Variable \$rowmethod might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/receipts_by_method_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/receipts_by_method_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/referrals_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/report_results.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/reports/sales_by_item.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/services_by_category.php + - message: '#^Variable \$key might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/services_by_category.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/reports/svc_code_financial_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/reports/unique_seen_patients_report.php + - message: '#^Variable \$logocode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/smart/register-app.php + - message: '#^Variable \$tinylogocode1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/smart/register-app.php + - message: '#^Variable \$tinylogocode2 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/smart/register-app.php + - message: '#^Variable \$GLOBALS_METADATA might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/super/edit_globals.php + - message: '#^Variable \$USER_SPECIFIC_GLOBALS might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/super/edit_globals.php + - message: '#^Variable \$USER_SPECIFIC_TABS might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/super/edit_globals.php + - message: '#^Variable \$globalTitle might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/super/edit_globals.php + - message: '#^Variable \$globalValue might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../interface/super/edit_globals.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/super/edit_globals.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_globals.php + - message: '#^Variable \$datatypes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_layout.php + - message: '#^Variable \$sources might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_layout.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_layout.php + - message: '#^Variable \$typesUsingList might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_layout.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_layout_props.php + - message: '#^Variable \$code might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/super/edit_list.php + - message: '#^Variable \$id in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/super/edit_list.php + - message: '#^Variable \$id in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../interface/super/edit_list.php + - message: '#^Variable \$modifier on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/super/edit_list.php + - message: '#^Variable \$ok_map_cvx_codes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_list.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/super/edit_list.php + - message: '#^Variable \$total_rows might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/edit_list.php + - message: '#^Variable \$code_types might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/super/layout_service_codes.php + - message: '#^Variable \$eres might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/layout_service_codes.php + - message: '#^Variable \$tmp might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/layout_service_codes.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/manage_document_templates.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/manage_site_files.php + - message: '#^Variable \$resp in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../interface/super/manage_site_files.php + - message: '#^Variable \$fldname might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/templates/field_html_display_section.php + - message: '#^Variable \$userMode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/super/templates/field_multi_sorted_list_selector.php + - message: '#^Variable \$therapy_group might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/index.php + - message: '#^Access to an undefined property ParticipantsController\:\:\$groupEventsModel\.$#' + identifier: property.notFound + count: 2 + path: ../interface/therapy_groups/therapy_groups_controllers/participants_controller.php + - message: '#^Access to an undefined property ParticipantsController\:\:\$groupModel\.$#' + identifier: property.notFound + count: 2 + path: ../interface/therapy_groups/therapy_groups_controllers/participants_controller.php + - message: '#^Access to an undefined property ParticipantsController\:\:\$groupParticipantsModel\.$#' + identifier: property.notFound + count: 6 + path: ../interface/therapy_groups/therapy_groups_controllers/participants_controller.php + - message: '#^Access to an undefined property TherapyGroupsController\:\:\$counselorsModel\.$#' + identifier: property.notFound + count: 4 + path: ../interface/therapy_groups/therapy_groups_controllers/therapy_groups_controller.php + - message: '#^Variable \$encounters might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_models/therapy_groups_encounters_model.php + - message: '#^Variable \$providers might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/therapy_groups/therapy_groups_models/users_model.php + - message: '#^Variable \$groupData might not be defined\.$#' + identifier: variable.undefined + count: 15 + path: ../interface/therapy_groups/therapy_groups_views/addGroup.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/therapy_groups/therapy_groups_views/addGroup.php + - message: '#^Variable \$savingStatus might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../interface/therapy_groups/therapy_groups_views/addGroup.php + - message: '#^Variable \$statuses might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/addGroup.php + - message: '#^Variable \$users might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/addGroup.php + - message: '#^Variable \$events might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/appointmentComponent.php + - message: '#^Variable \$groupData might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/therapy_groups/therapy_groups_views/appointmentComponent.php + - message: '#^Variable \$groupId might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/therapy_groups/therapy_groups_views/appointmentComponent.php + - message: '#^Variable \$groupData might not be defined\.$#' + identifier: variable.undefined + count: 26 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php + - message: '#^Variable \$groupId might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php + - message: '#^Variable \$readonly might not be defined\.$#' + identifier: variable.undefined + count: 13 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php + - message: '#^Variable \$savingStatus might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php + - message: '#^Variable \$statuses might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php + - message: '#^Variable \$users might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php + - message: '#^Variable \$addStatus might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$groupId might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$groupName might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$group_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$participant_data might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$participants might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$readonly might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$statuses might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php + - message: '#^Variable \$counselors might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/listGroups.php + - message: '#^Variable \$deletion_response might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/therapy_groups/therapy_groups_views/listGroups.php + - message: '#^Variable \$deletion_try might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/listGroups.php + - message: '#^Variable \$group_types might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/listGroups.php + - message: '#^Variable \$statuses might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/therapy_groups/therapy_groups_views/listGroups.php + - message: '#^Variable \$therapyGroups might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/therapy_groups/therapy_groups_views/listGroups.php + - message: '#^Variable \$row might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/addrbook_edit.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/addrbook_edit.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/addrbook_list.php + - message: '#^Variable \$result2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/facilities.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/facilities_add.php + - message: '#^Variable \$my_fid on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../interface/usergroup/facility_admin.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/facility_admin.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/facility_user.php + - message: '#^Variable \$date_init might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/facility_user_admin.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/facility_user_admin.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/mfa_registrations.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/mfa_totp.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/mfa_u2f.php + - message: '#^Variable \$email might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/ssl_certificates_admin.php + - message: '#^Variable \$user might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/ssl_certificates_admin.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/user_admin.php + - message: '#^Variable \$selected_user_is_superuser might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../interface/usergroup/user_admin.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/user_admin.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/user_info.php + - message: '#^Variable \$webroot might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/user_info.php + - message: '#^Variable \$SMTP_HOST might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$current_date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$grace_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$grouplist might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$pwd_expires might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$result4 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$result5 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$success might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$un might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin.php + - message: '#^Variable \$grouplist might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/usergroup_admin_add.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/usergroup_admin_add.php + - message: '#^Variable \$result3 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin_add.php + - message: '#^Variable \$result5 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../interface/usergroup/usergroup_admin_add.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../interface/usergroup/usergroup_admin_add.php + - message: '#^Variable \$dbase might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../ippf_upgrade.php + - message: '#^Path in include\(\) "views/esign_signature_log\.php" is not a file or it does not exist\.$#' + identifier: include.fileNotFound + count: 1 + path: ../library/ESign/DbRow/Signable.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/ESign/views/default/esign_signature_log.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/ESign/views/encounter/esign_button.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../library/ESign/views/encounter/esign_form.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/ESign/views/form/esign_button.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../library/ESign/views/form/esign_form.php + - message: '#^Function acl_check not found\.$#' + identifier: function.notFound + count: 1 + path: ../library/FeeSheet.class.php + - message: '#^Function updateInvoiceRefNumber not found\.$#' + identifier: function.notFound + count: 1 + path: ../library/FeeSheet.class.php + - message: '#^Variable \$autojustify might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/FeeSheet.class.php + - message: '#^Access to an undefined property MedExApi\\Display\:\:\$lastError\.$#' + identifier: property.notFound + count: 4 + path: ../library/MedEx/API.php + - message: '#^Access to an undefined property MedExApi\\Events\:\:\$lastError\.$#' + identifier: property.notFound + count: 2 + path: ../library/MedEx/API.php + - message: '#^Access to an undefined property MedExApi\\Practice\:\:\$lastError\.$#' + identifier: property.notFound + count: 1 + path: ../library/MedEx/API.php + - message: '#^Access to an undefined property MedExApi\\Setup\:\:\$lastError\.$#' + identifier: property.notFound + count: 1 + path: ../library/MedEx/API.php + - message: '#^Call to static method NWeekdayOfMonth\(\) on an unknown class MedExApi\\Date_Calc\.$#' + identifier: class.notFound + count: 1 + path: ../library/MedEx/API.php + - message: '#^Instantiated class MedExApi\\DateTime not found\.$#' + identifier: class.notFound + count: 2 + path: ../library/MedEx/API.php + - message: '#^Undefined variable\: \$form_patient_id$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Undefined variable\: \$form_patient_name$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Undefined variable\: \$prog$#' + identifier: variable.undefined + count: 3 + path: ../library/MedEx/API.php + - message: '#^Undefined variable\: \$setting_selectors$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Undefined variable\: \$userid$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$deletes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$events on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$expired might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$facility might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/MedEx/API.php + - message: '#^Variable \$form_patient_id in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$form_patient_name in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$icon might not be defined\.$#' + identifier: variable.undefined + count: 13 + path: ../library/MedEx/API.php + - message: '#^Variable \$last_col_width might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$no_fu might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$no_interval might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$pid_list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$provider might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/MedEx/API.php + - message: '#^Variable \$ptkr_future_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$result2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$setting_selectors in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$tell_MedEx might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/API.php + - message: '#^Variable \$today might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/MedEx/API.php + - message: '#^Variable \$MedEx might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/MedEx/MedEx.php + - message: '#^Variable \$result4 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/adminacl_ajax.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/adminacl_ajax.php + - message: '#^Undefined variable\: \$default$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/code_attributes_ajax.php + - message: '#^Variable \$fileroot might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/ajax/code_attributes_ajax.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/ajax/dated_reminders_counter.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/ajax/easipro_util.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/facility_ajax_code.php + - message: '#^Variable \$name_alt might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../library/ajax/graphs.php + - message: '#^Variable \$titleGraphLine1 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/graphs.php + - message: '#^Variable \$titleGraphLine2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/graphs.php + - message: '#^Instantiated class TwigContainer not found\.$#' + identifier: class.notFound + count: 1 + path: ../library/ajax/immunization_export.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/messages/validate_messages_document_ajax.php + - message: '#^Variable \$twig in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../library/ajax/messages/validate_messages_document_ajax.php + - message: '#^Undefined variable\: \$bgcolor$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/payment_ajax.php + - message: '#^Variable \$StringToAppend might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/ajax/payment_ajax.php + - message: '#^Variable \$StringToAppend2 might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/ajax/payment_ajax.php + - message: '#^Variable \$bgcolor on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../library/ajax/payment_ajax.php + - message: '#^Variable \$patient_code might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../library/ajax/payment_ajax.php + - message: '#^Variable \$patient_code_complete might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/payment_ajax.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/set_pt.php + - message: '#^Variable \$isPortal on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../library/ajax/upload.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/ajax/upload.php + - message: '#^Variable \$rtn might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/ajax/upload.php + - message: '#^Undefined variable\: \$provider$#' + identifier: variable.undefined + count: 1 + path: ../library/amc.php + - message: '#^Variable \$provider in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../library/amc.php + - message: '#^Undefined variable\: \$pid$#' + identifier: variable.undefined + count: 2 + path: ../library/api.inc.php + - message: '#^Variable \$res in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../library/appointments.inc.php + - message: '#^Access to undefined constant procedure\:\:DIALYSIS_SERVICE\.$#' + identifier: classConstant.notFound + count: 1 + path: ../library/classes/ClinicalTypes/codes.php + - message: '#^Access to undefined constant procedure\:\:INFLU_VACCINE\.$#' + identifier: classConstant.notFound + count: 1 + path: ../library/classes/ClinicalTypes/codes.php + - message: '#^Access to undefined constant procedure\:\:PNEUMOCOCCAL_VACCINE\.$#' + identifier: classConstant.notFound + count: 1 + path: ../library/classes/ClinicalTypes/codes.php + - message: '#^Class procedure referenced with incorrect case\: Procedure\.$#' + identifier: class.nameCase + count: 3 + path: ../library/classes/ClinicalTypes/codes.php + - message: '#^Variable \$inline_arg might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/Controller.class.php + - message: '#^Access to an undefined property CouchDB\:\:\$body\.$#' + identifier: property.notFound + count: 1 + path: ../library/classes/CouchDB.class.php + - message: '#^Access to an undefined property CouchDB\:\:\$dbase\.$#' + identifier: property.notFound + count: 6 + path: ../library/classes/CouchDB.class.php + - message: '#^Access to an undefined property CouchDB\:\:\$headers\.$#' + identifier: property.notFound + count: 1 + path: ../library/classes/CouchDB.class.php + - message: '#^Access to an undefined property CouchDB\:\:\$host\.$#' + identifier: property.notFound + count: 6 + path: ../library/classes/CouchDB.class.php + - message: '#^Access to an undefined property CouchDB\:\:\$pass\.$#' + identifier: property.notFound + count: 2 + path: ../library/classes/CouchDB.class.php + - message: '#^Access to an undefined property CouchDB\:\:\$port\.$#' + identifier: property.notFound + count: 5 + path: ../library/classes/CouchDB.class.php + - message: '#^Access to an undefined property CouchDB\:\:\$user\.$#' + identifier: property.notFound + count: 2 + path: ../library/classes/CouchDB.class.php + - message: '#^Variable \$thumbnail_data might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/classes/Document.class.php + - message: '#^Constructor of class InsuranceCompany has an unused parameter \$prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../library/classes/InsuranceCompany.class.php + - message: '#^Constructor of class InsuranceNumbers has an unused parameter \$prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../library/classes/InsuranceNumbers.class.php + - message: '#^Function NumberToText not found\.$#' + identifier: function.notFound + count: 1 + path: ../library/classes/NumberToText.class.php + - message: '#^Undefined variable\: \$string$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/OFX.class.php + - message: '#^Constructor of class Person has an unused parameter \$prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../library/classes/Person.class.php + - message: '#^Constructor of class Pharmacy has an unused parameter \$prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../library/classes/Pharmacy.class.php + - message: '#^Variable \$arr might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/Prescription.class.php + - message: '#^Variable \$string might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/Prescription.class.php + - message: '#^Constructor of class Provider has an unused parameter \$prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../library/classes/Provider.class.php + - message: '#^Call to an undefined method HTML_TreeMenu_Presentation\:\:toHTML\(\)\.$#' + identifier: method.notFound + count: 1 + path: ../library/classes/TreeMenu.php + - message: '#^Constructor of class X12Partner has an unused parameter \$prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../library/classes/X12Partner.class.php + - message: '#^Variable \$b2 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/classes/fpdf/fpdf.php + - message: '#^Variable \$cmapkey might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/classes/fpdf/fpdf.php + - message: '#^Variable \$ls might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/fpdf/fpdf.php + - message: '#^Variable \$ret might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/classes/postmaster.php + - message: '#^Variable \$sql might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/rulesets/Amc/library/AbstractAmcReport.php + - message: '#^Access to an undefined property smtp_class\:\:\$pending_sender\.$#' + identifier: property.notFound + count: 2 + path: ../library/classes/smtp/smtp.php + - message: '#^Constant SASL_PLAIN_EXIM_DOCUMENTATION_MODE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../library/classes/smtp/smtp.php + - message: '#^Constant SASL_PLAIN_EXIM_MODE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../library/classes/smtp/smtp.php + - message: '#^Access to an undefined property Thumbnail\:\:\$max_size\.$#' + identifier: property.notFound + count: 4 + path: ../library/classes/thumbnail/Thumbnail.class.php + - message: '#^Variable \$new_file might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/thumbnail/ThumbnailGenerator.php + - message: '#^Variable \$types_support might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/classes/thumbnail/ThumbnailGenerator.php + - message: '#^Variable \$excluded might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/clinical_rules.php + - message: '#^Variable \$new_conflicts in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/clinical_rules.php + - message: '#^Variable \$pass_filter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/clinical_rules.php + - message: '#^Variable \$patientNumber might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/clinical_rules.php + - message: '#^Variable \$percentage might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/clinical_rules.php + - message: '#^Variable \$temp_track_pass might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/clinical_rules.php + - message: '#^Variable \$contraception_billing_code in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/contraception_billing_scan.inc.php + - message: '#^Variable \$contraception_billing_prov in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/contraception_billing_scan.inc.php + - message: '#^Variable \$end might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/csv_like_join.php + - message: '#^Variable \$st might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/custom_template/add_custombutton.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/custom_template/custom_template.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/custom_template/custom_template.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/custom_template/custom_template.php + - message: '#^Variable \$filter_context on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../library/custom_template/personalize.php + - message: '#^Variable \$sel might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/custom_template/share_template.php + - message: '#^Variable \$sendDMTo on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../library/dated_reminder_functions.php + - message: '#^Variable \$dn might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/deletedrug.php + - message: '#^Variable \$web_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/dicom_frame.php + - message: '#^Variable \$body_text on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../library/direct_message_check.inc.php + - message: '#^Variable \$help_icon_title might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/display_help_icon_inc.php + - message: '#^Undefined variable\: \$ebo7$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_271_html.php + - message: '#^Variable \$cls might not be defined\.$#' + identifier: variable.undefined + count: 26 + path: ../library/edihistory/edih_271_html.php + - message: '#^Variable \$dmg03 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_271_html.php + - message: '#^Variable \$loopid might not be defined\.$#' + identifier: variable.undefined + count: 57 + path: ../library/edihistory/edih_271_html.php + - message: '#^Variable \$bht might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_277_html.php + - message: '#^Variable \$cls might not be defined\.$#' + identifier: variable.undefined + count: 42 + path: ../library/edihistory/edih_277_html.php + - message: '#^Variable \$loopid might not be defined\.$#' + identifier: variable.undefined + count: 33 + path: ../library/edihistory/edih_277_html.php + - message: '#^Variable \$qtystr might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/edihistory/edih_277_html.php + - message: '#^Variable \$sc204 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_277_html.php + - message: '#^Variable \$sc304 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_277_html.php + - message: '#^Undefined variable\: \$dtp03$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_278_html.php + - message: '#^Variable \$ar01 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_278_html.php + - message: '#^Variable \$dep_eb_html might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_278_html.php + - message: '#^Variable \$elem03 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_278_html.php + - message: '#^Variable \$elem05 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_278_html.php + - message: '#^Variable \$loopid might not be defined\.$#' + identifier: variable.undefined + count: 68 + path: ../library/edihistory/edih_278_html.php + - message: '#^Variable \$sbr_eb_html might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_278_html.php + - message: '#^Undefined variable\: \$cur03$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Undefined variable\: \$cur04$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Undefined variable\: \$n405$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$ca might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$cd might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$cls might not be defined\.$#' + identifier: variable.undefined + count: 34 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$cq might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$cr might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$loopid might not be defined\.$#' + identifier: variable.undefined + count: 38 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$plb_amt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$plb_rc might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$plb_rt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$plb_tr might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$svcfee might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$svcpmt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_835_html.php + - message: '#^Variable \$ackcode might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$acknote might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$fg_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$fg_type might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$sub_icn might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$subdate might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$substn might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$subtime might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_997_error.php + - message: '#^Variable \$subtype might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_997_error.php + - message: '#^Undefined variable\: \$file_type$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Undefined variable\: \$frow$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_archive.php + - message: '#^Undefined variable\: \$msg$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$arch_fn might not be defined\.$#' + identifier: variable.undefined + count: 12 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$archive_dir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$car2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$car_cmb_unique might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$h might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$h_ar might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$isrn might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$params might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$tmp_dir might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../library/edihistory/edih_archive.php + - message: '#^Variable \$type_ar might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_archive.php + - message: '#^Undefined variable\: \$tp$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_data.php + - message: '#^Variable \$dtpd2 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_data.php + - message: '#^Variable \$dtpdlbl might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_data.php + - message: '#^Variable \$errct might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_data.php + - message: '#^Variable \$fn might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_csv_data.php + - message: '#^Variable \$trc might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_csv_data.php + - message: '#^Undefined variable\: \$file_type$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_inc.php + - message: '#^Variable \$enc might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_inc.php + - message: '#^Variable \$pe might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_inc.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_inc.php + - message: '#^Variable \$rws might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_inc.php + - message: '#^Undefined variable\: \$rtp$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$bht03syn might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$bnfteq might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$cdx might not be defined\.$#' + identifier: variable.undefined + count: 39 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$err_seg might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$ft might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$gsdate might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$have_pt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$hl might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$isrsp might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$payer_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$payer_name might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$ptname might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$rej_ct might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$rqst might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$rspdate might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$rspsttype might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$rsptype might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$sar might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$svcdate might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_csv_parse.php + - message: '#^Variable \$_FILES in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../library/edihistory/edih_io.php + - message: '#^Variable \$_GET in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../library/edihistory/edih_io.php + - message: '#^Variable \$qs might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_io.php + - message: '#^Variable \$str_html might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_io.php + - message: '#^Variable \$has_eb might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_segments.php + - message: '#^Variable \$has_iii might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_segments.php + - message: '#^Variable \$rspfile might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_segments.php + - message: '#^Variable \$rspicn might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_segments.php + - message: '#^Variable \$stn might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/edih_segments.php + - message: '#^Undefined variable\: \$err$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_uploads.php + - message: '#^Undefined variable\: \$segment_ar$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Undefined variable\: \$st_pos$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$bht_pos might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$dr might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$ds might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$dt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$env_ar might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$gs_ct might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$gs_fid might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$gs_start might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$gsn might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$icn might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$seg_ar might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$segidx might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$stn might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Variable \$ta1_icn in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../library/edihistory/edih_x12file_class.php + - message: '#^Undefined variable\: \$de$#' + identifier: variable.undefined + count: 18 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Undefined variable\: \$delimiter3$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Undefined variable\: \$ds$#' + identifier: variable.undefined + count: 4 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$bpr02 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$check_amount might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$check_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$chk might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$ck might not be defined\.$#' + identifier: variable.undefined + count: 52 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$de might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$gs_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$i might not be defined\.$#' + identifier: variable.undefined + count: 27 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$loop might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$loopid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$lx01 might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$out might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$plbar might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$pmt_html might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$seg might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Variable \$segid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_835_accounting.php + - message: '#^Constant NET_SFTP_LOCAL_FILE not found\.$#' + identifier: constant.notFound + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Constant NET_SFTP_TYPE_REGULAR not found\.$#' + identifier: constant.notFound + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Function edih_sftp_connect not found\.$#' + identifier: function.notFound + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Undefined variable\: \$f_ct$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Undefined variable\: \$uplkey$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$actn might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$dir_to might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$fdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$host might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$ldir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$p_ct might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$pass might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$pdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$port might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$sftp_hosts might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$site in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../library/edihistory/test_edih_sftp_files.php + - message: '#^Variable \$current_state might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/expand_contract_inc.php + - message: '#^Variable \$s on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../library/formdata.inc.php + - message: '#^Variable \$where might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/forms.inc.php + - message: '#^Variable \$text on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../library/htmlspecialchars.inc.php + - message: '#^Undefined variable\: \$CPR$#' + identifier: variable.undefined + count: 2 + path: ../library/ippf_issues.inc.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/ippf_issues.inc.php + - message: '#^Variable \$datetimepicker_formatInput might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/js/xl/jquery-datetimepicker-2-5-4.js.php + - message: '#^Variable \$datetimepicker_showseconds might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/js/xl/jquery-datetimepicker-2-5-4.js.php + - message: '#^Variable \$datetimepicker_timepicker might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/js/xl/jquery-datetimepicker-2-5-4.js.php + - message: '#^Undefined variable\: \$disabled$#' + identifier: variable.undefined + count: 1 + path: ../library/options.inc.php + - message: '#^Undefined variable\: \$lbfonchange$#' + identifier: variable.undefined + count: 1 + path: ../library/options.inc.php + - message: '#^Undefined variable\: \$list_id_esc$#' + identifier: variable.undefined + count: 1 + path: ../library/options.inc.php + - message: '#^Undefined variable\: \$under$#' + identifier: variable.undefined + count: 1 + path: ../library/options.inc.php + - message: '#^Variable \$encounterResult in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/options.inc.php + - message: '#^Variable \$group_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/options.inc.php + - message: '#^Variable \$lrow might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../library/options.inc.php + - message: '#^Variable \$metadata might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/options.inc.php + - message: '#^Variable \$pdrow in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../library/options.inc.php + - message: '#^Variable \$tmp in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/options.inc.php + - message: '#^Variable \$insarr might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/patient.inc.php + - message: '#^Variable \$returnval might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../library/patient.inc.php + - message: '#^Variable \$AccountCode might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/payment.inc.php + - message: '#^Variable \$AdjustString might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/payment.inc.php + - message: '#^Variable \$all might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/pnotes.inc.php + - message: '#^Variable \$all might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/registry.inc.php + - message: '#^Variable \$category on left side of \?\?\= is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../library/registry.inc.php + - message: '#^Function fetch_reminders invoked with 1 parameter, 2 required\.$#' + identifier: arguments.count + count: 4 + path: ../library/reminders.php + - message: '#^Variable \$tempCollectReminders might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/reminders.php + - message: '#^Variable \$update_rem_log might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/reminders.php + - message: '#^Variable \$where might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/reminders.php + - message: '#^Variable \$arcount might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/report.inc.php + - message: '#^Variable \$ret might not be defined\.$#' + identifier: variable.undefined + count: 15 + path: ../library/report.inc.php + - message: '#^Variable \$retar might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/report.inc.php + - message: '#^Variable \$pass_sql might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/report_database.inc.php + - message: '#^Method Smarty_Compiler_Legacy\:\:_compile_tag\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Method Smarty_Compiler_Legacy\:\:_pop_tag\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$_output might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$arg_list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$attr_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$compiled_ref might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$expr might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$include_file might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$last_token might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$message might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$plugin_func might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Variable \$return might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php + - message: '#^Undefined variable\: \$dummy$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php + - message: '#^Variable \$_debug_start_time might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php + - message: '#^Variable \$_included_tpls_idx might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php + - message: '#^Variable \$_smarty_results might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php + - message: '#^Variable \$debug_start_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php + - message: '#^Variable \$included_tpls_idx might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php + - message: '#^Variable \$_readable might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/internals/core.get_php_resource.php + - message: '#^Variable \$_template_source might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/internals/core.get_php_resource.php + - message: '#^Variable \$_message might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/internals/core.load_plugins.php + - message: '#^Variable \$_plugin_func might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/internals/core.load_plugins.php + - message: '#^Variable \$debug_start_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/internals/core.process_cached_inserts.php + - message: '#^Function smarty_core_run_insert_handler\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../library/smarty_legacy/smarty/internals/core.run_insert_handler.php + - message: '#^Variable \$_debug_start_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/internals/core.run_insert_handler.php + - message: '#^Variable \$_config_vars might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../library/smarty_legacy/smarty/plugins/function.config_load.php + - message: '#^Variable \$_debug_start_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.config_load.php + - message: '#^Undefined variable\: \$_var_compiled$#' + identifier: variable.undefined + count: 2 + path: ../library/smarty_legacy/smarty/plugins/function.eval.php + - message: '#^Variable \$accept in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.fetch.php + - message: '#^Function smarty_function_html_checkboxes\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_checkboxes.php + - message: '#^Variable \$values in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_checkboxes.php + - message: '#^Variable \$file in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_image.php + - message: '#^Variable \$options in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_options.php + - message: '#^Variable \$values in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_options.php + - message: '#^Function smarty_function_html_radios\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_radios.php + - message: '#^Variable \$_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_radios.php + - message: '#^Variable \$values in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_radios.php + - message: '#^Variable \$day_empty in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_select_date.php + - message: '#^Variable \$month_empty in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_select_date.php + - message: '#^Variable \$year_empty in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_select_date.php + - message: '#^Undefined variable\: \$loop$#' + identifier: variable.undefined + count: 2 + path: ../library/smarty_legacy/smarty/plugins/function.html_table.php + - message: '#^Variable \$caption in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.html_table.php + - message: '#^Variable \$function in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.popup.php + - message: '#^Variable \$inarray in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.popup.php + - message: '#^Variable \$text in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.popup.php + - message: '#^Function smarty_function_popup_init\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../library/smarty_legacy/smarty/plugins/function.popup_init.php + - message: '#^Variable \$smarty might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/smarty_legacy/smarty/plugins/modifier.date_format.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/specialty_forms.php + - message: '#^Variable \$bcodes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/spreadsheet.inc.php + - message: '#^Variable \$cellstatic might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/spreadsheet.inc.php + - message: '#^Variable \$encounter might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/spreadsheet.inc.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/spreadsheet.inc.php + - message: '#^Variable \$saveid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/spreadsheet.inc.php + - message: '#^Variable \$spreadsheet_form_name might not be defined\.$#' + identifier: variable.undefined + count: 21 + path: ../library/spreadsheet.inc.php + - message: '#^Variable \$userauthorized might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/spreadsheet.inc.php + - message: '#^Variable \$handle1 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/standard_tables_capture.inc.php + - message: '#^Variable \$new_str might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../library/standard_tables_capture.inc.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/translation.inc.php + - message: '#^Variable \$use_validate_js might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../library/validation/validation_script.js.php + - message: '#^Variable \$check_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/batch_phone_notification.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/batch_phone_notification.php + - message: '#^Variable \$ssql might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/batch_phone_notification.php + - message: '#^Variable \$EMAIL_NOTIFICATION_HOUR might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../modules/sms_email_reminder/cron_email_notification.php + - message: '#^Variable \$data_info might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/cron_email_notification.php + - message: '#^Variable \$patient_info might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/cron_email_notification.php + - message: '#^Variable \$smsgateway_info might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/cron_email_notification.php + - message: '#^Path in include\(\) "getmxrr\.php" is not a file or it does not exist\.$#' + identifier: include.fileNotFound + count: 1 + path: ../modules/sms_email_reminder/cron_functions.php + - message: '#^Class sms constructor invoked with 3 parameters, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../modules/sms_email_reminder/cron_sms_notification.php + - message: '#^Variable \$SMS_NOTIFICATION_HOUR might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../modules/sms_email_reminder/cron_sms_notification.php + - message: '#^Variable \$data_info might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/cron_sms_notification.php + - message: '#^Variable \$patient_info might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/cron_sms_notification.php + - message: '#^Variable \$smsgateway_info might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/cron_sms_notification.php + - message: '#^Access to an undefined property sms\:\:\$base\.$#' + identifier: property.notFound + count: 5 + path: ../modules/sms_email_reminder/sms_clickatell.php + - message: '#^Access to an undefined property sms\:\:\$base_s\.$#' + identifier: property.notFound + count: 3 + path: ../modules/sms_email_reminder/sms_clickatell.php + - message: '#^Method sms\:\:_send_sock\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../modules/sms_email_reminder/sms_tmb4.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../modules/sms_email_reminder/sms_tmb4.php + - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../portal/account/account.lib.php + - message: '#^Variable \$mname on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../portal/account/account.lib.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/account/account.php + - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../portal/account/index_reset.php + - message: '#^Variable \$portalRegistrationAuthorization might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/account/register.php + - message: '#^Variable \$hiddenLanguageField might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/account/verify.php + - message: '#^Variable \$result2 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/account/verify.php + - message: '#^Variable \$result3 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/account/verify.php + - message: '#^Variable \$eid in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 3 + path: ../portal/add_edit_event_user.php + - message: '#^Variable \$event_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/add_edit_event_user.php + - message: '#^Variable \$insert might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/add_edit_event_user.php + - message: '#^Variable \$patientname might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/add_edit_event_user.php + - message: '#^Variable \$providers_current might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/add_edit_event_user.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/add_edit_event_user.php + - message: '#^Variable \$starttime might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/add_edit_event_user.php + - message: '#^Variable \$providerid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/find_appt_popup_user.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/find_appt_popup_user.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_allergies.php + - message: '#^Variable \$class might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_amendments.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_amendments.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_lab_results.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_medications.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_patient_documents.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_patient_documents.php + - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 2 + path: ../portal/get_patient_info.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_patient_info.php + - message: '#^Variable \$userData in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../portal/get_patient_info.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_prescriptions.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_pro.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/get_problems.php + - message: '#^Variable \$insurance_data_array might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/get_profile.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../portal/get_profile.php + - message: '#^Variable \$landingpage might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/home.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../portal/home.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/home.php + - message: '#^Variable \$defaultLangID might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/index.php + - message: '#^Variable \$defaultLangName might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/index.php + - message: '#^Variable \$languageRegistration on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../portal/index.php + - message: '#^Variable \$one_time might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/index.php + - message: '#^Variable \$redirectUrl in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 3 + path: ../portal/index.php + - message: '#^Variable \$result2 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/index.php + - message: '#^Variable \$result3 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/index.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/lib/doc_lib.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/lib/patient_groups.php + - message: '#^Variable \$ccaudit might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/lib/paylib.php + - message: '#^Variable \$invoice might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/lib/paylib.php + - message: '#^Variable \$response might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/lib/paylib.php + - message: '#^Variable \$landingpage might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/logout.php + - message: '#^Variable \$owner in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../portal/messaging/handle_note.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/messaging/handle_note.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/messaging/messages.php + - message: '#^Variable \$resultpd on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../portal/messaging/messages.php + - message: '#^Variable \$resultusers on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../portal/messaging/messages.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/messaging/messages.php + - message: '#^Instantiated class OpenEMR\\PatientPortal\\Chat\\ChatController not found\.$#' + identifier: class.notFound + count: 1 + path: ../portal/messaging/secure_chat.php + - message: '#^Instantiated class specify not found\.$#' + identifier: class.notFound + count: 1 + path: ../portal/patient/_global_config.php + - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/patient/_machine_config.php + - message: '#^Method Savant3_Filter_trimwhitespace\:\:replace\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/savant/Savant3/resources/Savant3_Filter_trimwhitespace.php + - message: '#^Method parseCSV\:\:_check_count\(\) should return special but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/util/parsecsv.lib.php + - message: '#^Method parseCSV\:\:encoding\(\) should return nothing but return statement is missing\.$#' + identifier: return.missing + count: 2 + path: ../portal/patient/fwk/libs/util/parsecsv.lib.php + - message: '#^Function mysql_affected_rows not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_close not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_error not found\.$#' + identifier: function.notFound + count: 4 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_fetch_assoc not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_free_result not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_insert_id not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_ping not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_query not found\.$#' + identifier: function.notFound + count: 2 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_select_db not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_set_charset not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php + - message: '#^Function mysql_ping not found\.$#' + identifier: function.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL_PDO.php + - message: '#^Undefined variable\: \$attachment$#' + identifier: variable.undefined + count: 4 + path: ../portal/patient/fwk/libs/verysimple/HTTP/FileUpload.php + - message: '#^Variable \$_POST in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../portal/patient/fwk/libs/verysimple/HTTP/RequestUtil.php + - message: '#^Access to an undefined property CacheMemCache\:\:\$LastServerError\.$#' + identifier: property.notFound + count: 4 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/CacheMemCache.php + - message: '#^Method CacheNoCache\:\:Set\(\) should return VARIANT but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/CacheNoCache.php + - message: '#^Method CacheRam\:\:Set\(\) should return VARIANT but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/CacheRam.php + - message: '#^Access to an undefined property DataSet\:\:\$_total\.$#' + identifier: property.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataSet.php + - message: '#^Class GenericRouter constructor invoked with 0 parameters, 3 required\.$#' + identifier: arguments.count + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/Dispatcher.php + - message: '#^Call to static method createWriter\(\) on an unknown class PHPExcel_IOFactory\.$#' + identifier: class.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/ExportUtility.php + - message: '#^Instantiated class PHPExcel not found\.$#' + identifier: class.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/ExportUtility.php + - message: '#^Path in require_once\(\) "PEAR/PHPExcel\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/ExportUtility.php + - message: '#^Access to an undefined property MockRouter\:\:\$delim\.$#' + identifier: property.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/MockRouter.php + - message: '#^Access to an undefined property MockRouter\:\:\$stripApi\.$#' + identifier: property.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/MockRouter.php + - message: '#^Access to an undefined property PHPRenderEngine\:\:\$templatePath\.$#' + identifier: property.notFound + count: 2 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PHPRenderEngine.php + - message: '#^Method Phreezable\:\:__serialize\(\) should return array\ but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/Phreezable.php + - message: '#^Method Phreezer\:\:GetPrimaryKeyMap\(\) should return KeyMap but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/Phreezer.php + - message: '#^Class GenericRouter constructor invoked with 0 parameters, 3 required\.$#' + identifier: arguments.count + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Class IRSSFeedItem not found\.$#' + identifier: class.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Instantiated class RSS_Writer not found\.$#' + identifier: class.notFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Path in require_once\(\) "verysimple/RSS/IRSSFeedItem\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Path in require_once\(\) "verysimple/RSS/Writer\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php + - message: '#^Method Reporter\:\:__serialize\(\) should return array\ but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/Reporter.php + - message: '#^Constructor of class SimpleRouter has an unused parameter \$appRootUrl\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/SimpleRouter.php + - message: '#^Method SimpleRouter\:\:GetUri\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/verysimple/Phreeze/SimpleRouter.php + - message: '#^Method VerySimpleStringUtil\:\:unicode_entity_replace\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../portal/patient/fwk/libs/verysimple/String/VerySimpleStringUtil.php + - message: '#^Variable \$errors on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../portal/patient/libs/Controller/OnsiteDocumentController.php + - message: '#^Variable \$output might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/patient/libs/Controller/PatientController.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/patient/templates/DefaultError404.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 9 + path: ../portal/patient/templates/DefaultErrorFatal.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../portal/patient/templates/OnsiteActivityViewListView.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 14 + path: ../portal/patient/templates/OnsiteDocumentListView.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../portal/patient/templates/OnsitePortalActivityListView.tpl.php + - message: '#^Path in require_once\(\) "\.\./\.\./library/options\.inc\.php" is not a file or it does not exist\.$#' + identifier: requireOnce.fileNotFound + count: 1 + path: ../portal/patient/templates/PatientListView.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 14 + path: ../portal/patient/templates/PatientListView.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../portal/patient/templates/ProviderHome.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/patient/templates/_FormsHeader.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../portal/patient/templates/_Header.tpl.php + - message: '#^Variable \$this might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../portal/patient/templates/_modalFormHeader.tpl.php + - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../portal/portal_payment.php + - message: '#^Variable \$form_pid might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/portal_payment.php + - message: '#^Variable \$payment_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/portal_payment.php + - message: '#^Variable \$payrow might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/portal_payment.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/portal_payment.php + - message: '#^Variable \$session_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/portal_payment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../portal/portal_payment.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/portal_payment.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/document_downloads_action.php + - message: '#^Variable \$adj_amt might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/pat_ledger.php + - message: '#^Variable \$last_year might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/report/pat_ledger.php + - message: '#^Variable \$pid might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../portal/report/pat_ledger.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/pat_ledger.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$from_file_tmp_name might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$insurance_data_array might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$prevIssueType might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$tmp_files_remove might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$v_js_includes might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../portal/report/portal_custom_report.php + - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/portal_patient_report.php + - message: '#^Variable \$rootdir might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../portal/report/portal_patient_report.php + - message: '#^Variable \$srcdir might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../portal/report/portal_patient_report.php + - message: '#^Variable \$OE_SITES_BASE might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../setup.php + - message: '#^Variable \$config in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 2 + path: ../setup.php + - message: '#^Variable \$memory_limit_mb might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../setup.php + - message: '#^Variable \$randomsecret in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../setup.php + - message: '#^Variable \$sqlconf might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../setup.php + - message: '#^Variable \$state on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../setup.php + - message: '#^Undefined variable\: \$pid$#' + identifier: variable.undefined + count: 1 + path: ../sites/default/LBF/LBFathbf.plugin.php + - message: '#^Undefined variable\: \$pid$#' + identifier: variable.undefined + count: 1 + path: ../sites/default/LBF/LBFvbf.plugin.php + - message: '#^Variable \$desc might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sites/default/statement.inc.php + - message: '#^Variable \$dun_message might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../sites/default/statement.inc.php + - message: '#^Variable \$patientIdCc might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sphere/initial_response.php + - message: '#^Variable \$GLOBALS_METADATA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_patch.php + - message: '#^Variable \$v_database might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_patch.php + - message: '#^Variable \$v_major might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_patch.php + - message: '#^Variable \$v_minor might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_patch.php + - message: '#^Variable \$v_patch might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_patch.php + - message: '#^Variable \$v_realpatch might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../sql_patch.php + - message: '#^Variable \$v_tag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_patch.php + - message: '#^Variable \$GLOBALS_METADATA might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_upgrade.php + - message: '#^Variable \$result2 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../sql_upgrade.php + - message: '#^Variable \$v_database might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_upgrade.php + - message: '#^Variable \$v_major might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_upgrade.php + - message: '#^Variable \$v_minor might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_upgrade.php + - message: '#^Variable \$v_patch might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_upgrade.php + - message: '#^Variable \$v_tag might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_upgrade.php + - message: '#^Variable \$webserver_root might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../sql_upgrade.php + - message: '#^Variable \$query_part_day might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../src/Billing/BillingReport.php + - message: '#^Variable \$query_part_day1 might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Billing/BillingReport.php + - message: '#^Variable \$row might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Billing/BillingUtilities.php + - message: '#^Variable \$msp might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Billing/Claim.php + - message: '#^Variable \$tmp in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Billing/Claim.php + - message: '#^Variable \$tmp might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Billing/Claim.php + - message: '#^Variable \$elog might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Billing/EDI270.php + - message: '#^Variable \$field in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Billing/EDI270.php + - message: '#^Variable \$responses in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Billing/EDI270.php + - message: '#^Variable \$returnval might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Billing/EDI270.php + - message: '#^Variable \$segmentcount might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Billing/EDI270.php + - message: '#^Variable \$MDY might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Billing/Hcfa1500.php + - message: '#^Variable \$encounter_claim on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Billing/X125010837I.php + - message: '#^Variable \$allowed might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php + - message: '#^Variable \$columns might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php + - message: '#^Variable \$fld_target_criteria on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php + - message: '#^Variable \$message on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/ClinicalDecisionRules/Interface/RuleLibrary/Rule.php + - message: '#^Variable \$arr_group_titles might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Common/Acl/AclExtended.php + - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../src/Common/Auth/AuthUtils.php + - message: '#^Parameter \$previous of method OpenEMR\\Common\\Auth\\Exception\\OneTimeAuthException\:\:__construct\(\) has invalid type OpenEMR\\Common\\Auth\\Exception\\Throwable\.$#' + identifier: class.notFound + count: 1 + path: ../src/Common/Auth/Exception/OneTimeAuthException.php + - message: '#^Parameter \$previous of method OpenEMR\\Common\\Auth\\Exception\\OneTimeAuthExpiredException\:\:__construct\(\) has invalid type OpenEMR\\Common\\Auth\\Exception\\Throwable\.$#' + identifier: class.notFound + count: 1 + path: ../src/Common/Auth/Exception/OneTimeAuthExpiredException.php + - message: '#^Method OpenEMR\\Common\\Auth\\MfaUtils\:\:checkU2F\(\) should return bool but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../src/Common/Auth/MfaUtils.php + - message: '#^Variable \$response might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Common/Auth/MfaUtils.php + - message: '#^Variable \$this_contacts in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../src/Common/Auth/OpenIDConnect/Entities/ClientEntity.php + - message: '#^Variable \$client in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Common/Auth/OpenIDConnect/Grant/CustomPasswordGrant.php + - message: '#^Variable \$clients in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Common/Auth/OpenIDConnect/Repositories/ClientRepository.php + - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../src/Common/Auth/OpenIDConnect/Repositories/RefreshTokenRepository.php + - message: '#^Variable \$issues might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Common/Command/CreateReleaseChangelogCommand.php + - message: '#^Constructor of class OpenEMR\\Common\\Forms\\FormVitals has an unused parameter \$_prefix\.$#' + identifier: constructor.unusedParameter + count: 1 + path: ../src/Common/Forms/FormVitals.php + - message: '#^Variable \$code_types in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../src/Common/Forms/Types/BillingCodeType.php + - message: '#^Variable \$tmp in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Common/Forms/Types/LocalProviderListType.php + - message: '#^Variable \$parts in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Common/Http/HttpRestParsedRoute.php + - message: '#^Variable \$test in isset\(\) always exists and is not nullable\.$#' + identifier: isset.variable + count: 1 + path: ../src/Common/Layouts/LayoutsUtils.php + - message: '#^Access to an undefined property OpenEMR\\Common\\ORDataObject\\ContactAddress\:\:\$use\.$#' + identifier: property.notFound + count: 1 + path: ../src/Common/ORDataObject/ContactAddress.php + - message: '#^Call to an undefined method OpenEMR\\Common\\ORDataObject\\ORDataObject\:\:get_id\(\)\.$#' + identifier: method.notFound + count: 1 + path: ../src/Common/ORDataObject/ORDataObject.php + - message: '#^Variable \$enum might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Common/ORDataObject/ORDataObject.php + - message: '#^Variable \$values might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Common/ORDataObject/ORDataObject.php + - message: '#^Method OpenEMR\\Core\\Header\:\:readConfigFile\(\) should return array but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../src/Core/Header.php + - message: '#^Method OpenEMR\\Core\\Header\:\:setupHeader\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../src/Core/Header.php + - message: '#^Class OpenEMR\\Cqm\\CqmClient constructor invoked with 0 parameters, 2\-4 required\.$#' + identifier: arguments.count + count: 1 + path: ../src/Cqm/test.php + - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:usingHeaders\(\)\.$#' + identifier: staticMethod.notFound + count: 5 + path: ../src/Easipro/Easipro.php + - message: '#^Undefined variable\: \$row$#' + identifier: variable.undefined + count: 1 + path: ../src/Easipro/Easipro.php + - message: '#^Variable \$returnval might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Easipro/Easipro.php + - message: '#^Method OpenEMR\\Events\\Messaging\\SendNotificationEvent\:\:setSendNotificationMethod\(\) should return OpenEMR\\Events\\Messaging\\SendNotificationEvent but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../src/Events/Messaging/SendNotificationEvent.php + - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Events/Messaging/SendNotificationEvent.php + - message: '#^Access to an undefined property OpenEMR\\Gacl\\Gacl\:\:\$Cache_Lite\.$#' + identifier: property.notFound + count: 5 + path: ../src/Gacl/Gacl.php + - message: '#^Instantiated class OpenEMR\\Gacl\\Hashed_Cache_Lite not found\.$#' + identifier: class.notFound + count: 1 + path: ../src/Gacl/Gacl.php + - message: '#^Variable \$retarr might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Gacl/Gacl.php + - message: '#^Access to an undefined property OpenEMR\\Gacl\\GaclApi\:\:\$Cache_Lite\.$#' + identifier: property.notFound + count: 6 + path: ../src/Gacl/GaclApi.php + - message: '#^Undefined variable\: \$row_count$#' + identifier: variable.undefined + count: 1 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$groups_map_table might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$object_group_table might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$object_map_table might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$object_sections_table might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$object_type in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 7 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$retarr might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$table might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Gacl/GaclApi.php + - message: '#^Variable \$where in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Gacl/GaclApi.php + - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' + identifier: staticMethod.notFound + count: 1 + path: ../src/MedicalDevice/MedicalDevice.php + - message: '#^Variable \$catEntry might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../src/Menu/MainMenuRole.php + - message: '#^Method OpenEMR\\Menu\\MenuRole\:\:displayMenuRoleSelector\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../src/Menu/MenuRole.php + - message: '#^Method OpenEMR\\Menu\\MenuRole\:\:getMenu\(\) should return array but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../src/Menu/MenuRole.php + - message: '#^Method OpenEMR\\Menu\\MenuRole\:\:getMenuRole\(\) should return string but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: ../src/Menu/MenuRole.php + - message: '#^Variable \$action might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/OeUI/OemrUI.php + - message: '#^Variable \$action_href might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/OeUI/OemrUI.php + - message: '#^Variable \$action_title might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../src/OeUI/OemrUI.php + - message: '#^Variable \$frontSpecificRetail might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/PaymentProcessing/Sphere/SpherePayment.php + - message: '#^Variable \$trxcustidRetail might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/PaymentProcessing/Sphere/SpherePayment.php + - message: '#^Variable \$trxcustidRetailLicensekey might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/PaymentProcessing/Sphere/SpherePayment.php + - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:getCurlOptions\(\)\.$#' + identifier: staticMethod.notFound + count: 1 + path: ../src/Pharmacy/Services/ImportPharmacies.php + - message: '#^Variable \$zip might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Pharmacy/Services/ImportPharmacies.php + - message: '#^Class OpenEMR\\Services\\FHIR\\FhirDocRefService constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../src/RestControllers/FHIR/Operations/FhirOperationDocRefRestController.php + - message: '#^Variable \$exportWriter might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/RestControllers/FHIR/Operations/FhirOperationExportRestController.php + - message: '#^Variable \$outputResult might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/RestControllers/FHIR/Operations/FhirOperationExportRestController.php + - message: '#^Variable \$resource might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/RestControllers/FHIR/Operations/FhirOperationExportRestController.php + - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' + identifier: staticMethod.notFound + count: 1 + path: ../src/Rx/RxList.php + - message: '#^Variable \$all might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Rx/RxList.php + - message: '#^Variable \$ending might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Rx/RxList.php + - message: '#^Variable \$list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Rx/RxList.php + - message: '#^Variable \$my_data might not be defined\.$#' + identifier: variable.undefined + count: 6 + path: ../src/Rx/RxList.php + - message: '#^Variable \$type might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Rx/RxList.php + - message: '#^Variable \$ct_id might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$date might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$enc_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$enc_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$encounter_for_forms in empty\(\) always exists and is always falsy\.$#' + identifier: empty.variable + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$encounter_for_forms might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$encounter_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$end_date might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$facility_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$forms_encounters on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$id_data might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$immunization_date_value might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$list_id might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$med_pblm_begdate_value might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$med_pblm_enddate_value might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$o_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$oid_unit might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$pro_id might not be defined\.$#' + identifier: variable.undefined + count: 8 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$provider_id might not be defined\.$#' + identifier: variable.undefined + count: 10 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res3 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res6 might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res_q_sel_allergies might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res_q_sel_encounter might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res_q_sel_imm might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res_q_sel_med_pblm might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res_q_sel_vitals might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$res_query_sel_fac might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$static_encounter in empty\(\) is never defined\.$#' + identifier: empty.variable + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$test on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$vitals_date_value might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$vitals_id might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../src/Services/Cda/CdaTemplateImportDispose.php + - message: '#^Variable \$code might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Cda/CdaTemplateParse.php + - message: '#^Variable \$func_name in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 4 + path: ../src/Services/Cda/CdaTemplateParse.php + - message: '#^Variable \$reason_status on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/Cda/CdaTemplateParse.php + - message: '#^Variable \$result_status on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 2 + path: ../src/Services/Cda/CdaTemplateParse.php + - message: '#^Variable \$value on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 4 + path: ../src/Services/Cda/CdaTemplateParse.php + - message: '#^Variable \$form_id in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Services/ClinicalNotesService.php + - message: '#^Variable \$code in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Services/CodeTypesService.php + - message: '#^Variable \$code on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 3 + path: ../src/Services/CodeTypesService.php + - message: '#^Variable \$tmp on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/CodeTypesService.php + - message: '#^Variable \$type on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 3 + path: ../src/Services/CodeTypesService.php + - message: '#^Variable \$valueset on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/CodeTypesService.php + - message: '#^Variable \$valueset_name on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/CodeTypesService.php + - message: '#^Variable \$attributes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/DecisionSupportInterventionService.php + - message: '#^Variable \$service might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/DecisionSupportInterventionService.php + - message: '#^Variable \$q_id might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/DocumentTemplates/DocumentTemplateRender.php + - message: '#^Variable \$group_list might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/DocumentTemplates/DocumentTemplateService.php + - message: '#^Variable \$rtn might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/DocumentTemplates/DocumentTemplateService.php + - message: '#^Variable \$tid on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/DocumentTemplates/DocumentTemplateService.php + - message: '#^Undefined variable\: \$puuid$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/DrugService.php + - message: '#^Variable \$puuid in isset\(\) is never defined\.$#' + identifier: isset.variable + count: 1 + path: ../src/Services/DrugService.php + - message: '#^Variable \$code might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/FHIR/FhirImmunizationService.php + - message: '#^Variable \$display might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/FHIR/FhirImmunizationService.php + - message: '#^Variable \$class_object might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/FHIR/FhirResourcesService.php + - message: '#^Variable \$codeMapping in isset\(\) always exists and is always null\.$#' + identifier: isset.variable + count: 1 + path: ../src/Services/FHIR/Observation/FhirObservationLaboratoryService.php + - message: '#^Variable \$parsed_reference in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Services/FHIR/UtilsService.php + - message: '#^Variable \$result might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/InsuranceCompanyService.php + - message: '#^Variable \$return might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/LogoService.php + - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../src/Services/PatientAccessOnsiteService.php + - message: '#^Class OpenEMR\\Events\\Patient\\Summary\\PortalCredentialsTemplateDataFilterEvent constructor invoked with 2 parameters, 0 required\.$#' + identifier: arguments.count + count: 1 + path: ../src/Services/PatientAccessOnsiteService.php + - message: '#^Variable \$kernel in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Services/PatientAccessOnsiteService.php + - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/PatientPortalService.php + - message: '#^Variable \$days might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/PatientTrackerService.php + - message: '#^Variable \$hours might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/PatientTrackerService.php + - message: '#^Variable \$minutes might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/PatientTrackerService.php + - message: '#^Variable \$returnval might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/PatientTrackerService.php + - message: '#^Variable \$area_code on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/PhoneNumberService.php + - message: '#^Variable \$foreignId on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/PhoneNumberService.php + - message: '#^Variable \$number on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/PhoneNumberService.php + - message: '#^Variable \$prefix on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/PhoneNumberService.php + - message: '#^Variable \$type on left side of \?\? is never defined\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/PhoneNumberService.php + - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/Qrda/Cat1.php + - message: '#^Variable \$flatArray on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/QuestionnaireResponseService.php + - message: '#^Variable \$v on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/QuestionnaireResponseService.php + - message: '#^Variable \$form in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Services/QuestionnaireService.php + - message: '#^Variable \$q_url might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/QuestionnaireService.php + - message: '#^Variable \$q_uuid might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/QuestionnaireService.php + - message: '#^Variable \$DateValue on left side of \?\? always exists and is not nullable\.$#' + identifier: nullCoalesce.variable + count: 1 + path: ../src/Services/Utils/DateFormatterUtils.php + - message: '#^Variable \$newDate might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../src/Services/Utils/DateFormatterUtils.php + - message: '#^Variable \$records might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../src/Services/Utils/SQLUpgradeService.php + - message: '#^Variable \$subject in empty\(\) always exists and is not falsy\.$#' + identifier: empty.variable + count: 1 + path: ../src/Services/Utils/SQLUpgradeService.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../templates/super/rules/base/template/basic.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../templates/super/rules/base/template/criteria.php + - message: '#^Variable \$_redirect might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../templates/super/rules/base/template/redirect.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../templates/super/rules/controllers/alerts/list_actmgr.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../templates/super/rules/controllers/detail/view.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 2 + path: ../templates/super/rules/controllers/edit/action.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 4 + path: ../templates/super/rules/controllers/edit/add_criteria.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../templates/super/rules/controllers/edit/age.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 14 + path: ../templates/super/rules/controllers/edit/bucket.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 18 + path: ../templates/super/rules/controllers/edit/custom.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../templates/super/rules/controllers/edit/diagnosis.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../templates/super/rules/controllers/edit/intervals.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 7 + path: ../templates/super/rules/controllers/edit/lifestyle.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../templates/super/rules/controllers/edit/sex.php + - message: '#^Variable \$criteria might not be defined\.$#' + identifier: variable.undefined + count: 3 + path: ../templates/super/rules/controllers/edit/simple_text_criteria.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 1 + path: ../templates/super/rules/controllers/edit/summary.php + - message: '#^Variable \$viewBean might not be defined\.$#' + identifier: variable.undefined + count: 5 + path: ../templates/super/rules/controllers/review/view.php + - message: '#^Caught class OpenEMR\\Tests\\E2e\\User\\Exception not found\.$#' + identifier: class.notFound + count: 1 + path: ../tests/Tests/E2e/BbCreateStaffTest.php + - message: '#^Instantiated class OpenEMR\\Tests\\E2e\\User\\Exception not found\.$#' + identifier: class.notFound + count: 1 + path: ../tests/Tests/E2e/BbCreateStaffTest.php + - message: '#^Class OpenEMR\\ClinicalDecisionRules\\Interface\\ActionRouter constructor invoked with 3 parameters, 2 required\.$#' + identifier: arguments.count + count: 3 + path: ../tests/Tests/Unit/ClinicalDecisionRules/ActionRouterTest.php + - message: '#^Class OpenEMR\\ClinicalDecisionRules\\Interface\\ActionRouter constructor invoked with 3 parameters, 2 required\.$#' + identifier: arguments.count + count: 1 + path: ../tests/Tests/Unit/ClinicalDecisionRules/ControllerRouterTest.php diff --git a/.phpstan/phpstan.github.neon b/.phpstan/phpstan.github.neon index 2efde8fc6a6f..8122887b97d3 100644 --- a/.phpstan/phpstan.github.neon +++ b/.phpstan/phpstan.github.neon @@ -3,16996 +3,10 @@ includes: - phpstan-database-baseline.neon - phpstan-globals-baseline.neon - phpstan-curl-baseline.neon + - phpstan-remaining-baseline.neon parameters: reportUnmatchedIgnoredErrors: true scanFiles: - ../vendor/phpunit/phpunit/src/Framework/TestCase.php excludePaths: - ../sites/default/documents/smarty - ignoreErrors: - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../Documentation/help_files/sl_eob_help.php - - message: '#^Variable \$config might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../admin.php - - message: '#^Variable \$database_acl might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../admin.php - - message: '#^Variable \$database_patch might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../admin.php - - message: '#^Variable \$dbase might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../admin.php - - message: '#^Variable \$dbh might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../admin.php - - message: '#^Variable \$host might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../admin.php - - message: '#^Variable \$login might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../admin.php - - message: '#^Variable \$pass might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../admin.php - - message: '#^Variable \$port might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../admin.php - - message: '#^Variable \$v_acl might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../admin.php - - message: '#^Variable \$v_database might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../admin.php - - message: '#^Variable \$v_realpatch might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../admin.php - - message: '#^Variable \$authorID might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../ccr/createCCRActor.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 110 - path: ../ccr/createCCRActor.php - - message: '#^Variable \$e_Actors might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../ccr/createCCRActor.php - - message: '#^Variable \$oemrID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRActor.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 32 - path: ../ccr/createCCRAlerts.php - - message: '#^Variable \$e_Alerts might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRAlerts.php - - message: '#^Variable \$sourceID might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../ccr/createCCRAlerts.php - - message: '#^Variable \$authorID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRHeader.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 21 - path: ../ccr/createCCRHeader.php - - message: '#^Variable \$e_ccr might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../ccr/createCCRHeader.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 18 - path: ../ccr/createCCRImmunization.php - - message: '#^Variable \$e_Immunizations might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRImmunization.php - - message: '#^Variable \$sourceID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRImmunization.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 39 - path: ../ccr/createCCRMedication.php - - message: '#^Variable \$e_Medications might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRMedication.php - - message: '#^Variable \$sourceID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRMedication.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 32 - path: ../ccr/createCCRProblem.php - - message: '#^Variable \$e_Problems might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRProblem.php - - message: '#^Variable \$sourceID might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../ccr/createCCRProblem.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 33 - path: ../ccr/createCCRProcedure.php - - message: '#^Variable \$e_Procedures might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRProcedure.php - - message: '#^Variable \$sourceID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRProcedure.php - - message: '#^Variable \$authorID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRResult.php - - message: '#^Variable \$ccr might not be defined\.$#' - identifier: variable.undefined - count: 39 - path: ../ccr/createCCRResult.php - - message: '#^Variable \$e_Results might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/createCCRResult.php - - message: '#^Variable \$extension might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../ccr/transmitCCD.php - - message: '#^Variable \$text_out might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../ccr/transmitCCD.php - - message: '#^Variable \$duplicates on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../contrib/util/ccda_import/import_ccda.php - - message: '#^Variable \$policies_by_payer_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../contrib/util/chart_review_pids.php - - message: '#^Variable \$sqlconf might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../contrib/util/de_identification_upgrade.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../contrib/util/de_identification_upgrade.php - - message: '#^Variable \$dupecount might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../contrib/util/dupecheck/index.php - - message: '#^Variable \$dupelist might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../contrib/util/dupecheck/index.php - - message: '#^Variable \$sqlconf might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../contrib/util/dupecheck/mergerecords.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../contrib/util/dupscore.cli.php - - message: '#^Variable \$d might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../controllers/C_Document.class.php - - message: '#^Variable \$error might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../controllers/C_Document.class.php - - message: '#^Variable \$filetext might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../controllers/C_Document.class.php - - message: '#^Variable \$from_pathname might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../controllers/C_Document.class.php - - message: '#^Variable \$messages might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../controllers/C_Document.class.php - - message: '#^Variable \$temp_couchdb_url might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../controllers/C_Document.class.php - - message: '#^Variable \$description on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../controllers/C_DocumentCategory.class.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' - identifier: staticMethod.notFound - count: 1 - path: ../controllers/C_Prescription.class.php - - message: '#^Variable \$p might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../controllers/C_Prescription.class.php - - message: '#^Variable \$prescription might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../controllers/C_Prescription.class.php - - message: '#^Variable \$files might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/ajax_download.php - - message: '#^Variable \$qrda_file_path might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/ajax_download.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/ajax_download.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/chart_tracker.php - - message: '#^Variable \$counter might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../custom/code_types.inc.php - - message: '#^Variable \$query might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../custom/code_types.inc.php - - message: '#^Variable \$sql_bind_array might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/code_types.inc.php - - message: '#^Variable \$cqmCodes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/download_qrda.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../custom/download_qrda.php - - message: '#^Variable \$facility_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$facility_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_1_denom might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_1_exclude might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_1_ipp might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_1_numer1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_1_numer2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_1_numer3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_2_denom might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_2_exclude might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_2_ipp might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_2_numer1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_2_numer2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$stratum_2_numer3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$userRow might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../custom/export_qrda_xml.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../custom/export_xml.php - - message: '#^Variable \$alertmsg might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/import_xml.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../custom/import_xml.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/import_xml.php - - message: '#^Variable \$patients might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../custom/qrda_category1.inc.php - - message: '#^Variable \$facilResRow might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../custom/qrda_category1_functions.php - - message: '#^Variable \$gender might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/qrda_category1_functions.php - - message: '#^Variable \$patFname might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/qrda_category1_functions.php - - message: '#^Variable \$patLname might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/qrda_category1_functions.php - - message: '#^Variable \$patientRow might not be defined\.$#' - identifier: variable.undefined - count: 12 - path: ../custom/qrda_category1_functions.php - - message: '#^Variable \$tdTitle might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/qrda_category1_functions.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../custom/zutil.cli.doc_import.php - - message: '#^Access to an undefined property Cache_Lite\:\:\$_memoryCachingState\.$#' - identifier: property.notFound - count: 1 - path: ../gacl/Cache_Lite/Lite.php - - message: '#^Function set_magic_quotes_runtime not found\.$#' - identifier: function.notFound - count: 2 - path: ../gacl/Cache_Lite/Lite.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/about.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../gacl/admin/about.php - - message: '#^Variable \$i might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$options_acl_sections might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$options_aco_sections might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$options_aro_sections might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$options_axo_sections might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$selected_aro_array might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$selected_axo_array might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/acl_admin.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../gacl/admin/acl_debug.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 24 - path: ../gacl/admin/acl_debug.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 17 - path: ../gacl/admin/acl_list.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 29 - path: ../gacl/admin/acl_list.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 32 - path: ../gacl/admin/acl_list.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/acl_test.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../gacl/admin/acl_test.php - - message: '#^Variable \$acls might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test2.php - - message: '#^Variable \$avg_acl_check_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test2.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test2.php - - message: '#^Variable \$gacl might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test2.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../gacl/admin/acl_test2.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../gacl/admin/acl_test2.php - - message: '#^Variable \$tmp_aco_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test2.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test3.php - - message: '#^Variable \$gacl might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test3.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../gacl/admin/acl_test3.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../gacl/admin/acl_test3.php - - message: '#^Variable \$tmp_aco_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test3.php - - message: '#^Variable \$tmp_aco_section_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/acl_test3.php - - message: '#^Variable \$total_acl_check_time might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/acl_test3.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../gacl/admin/assign_group.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 22 - path: ../gacl/admin/assign_group.php - - message: '#^Variable \$i might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/assign_group.php - - message: '#^Variable \$selected_object_array might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/assign_group.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 20 - path: ../gacl/admin/assign_group.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/edit_group.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 17 - path: ../gacl/admin/edit_group.php - - message: '#^Variable \$retry might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/edit_group.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 13 - path: ../gacl/admin/edit_group.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/edit_object_sections.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 16 - path: ../gacl/admin/edit_object_sections.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 12 - path: ../gacl/admin/edit_object_sections.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../gacl/admin/edit_objects.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 17 - path: ../gacl/admin/edit_objects.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 15 - path: ../gacl/admin/edit_objects.php - - message: '#^Variable \$gacl_options might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../gacl/admin/gacl_admin.inc.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/group_admin.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../gacl/admin/group_admin.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../gacl/admin/group_admin.php - - message: '#^Undefined variable\: \$db$#' - identifier: variable.undefined - count: 1 - path: ../gacl/admin/object_search.php - - message: '#^Variable \$db might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../gacl/admin/object_search.php - - message: '#^Variable \$gacl_api might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../gacl/admin/object_search.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 14 - path: ../gacl/admin/object_search.php - - message: '#^Access to an undefined property Profiler\:\:\$output_enabled\.$#' - identifier: property.notFound - count: 2 - path: ../gacl/profiler.inc.php - - message: '#^Access to an undefined property Profiler\:\:\$trace_enabled\.$#' - identifier: property.notFound - count: 2 - path: ../gacl/profiler.inc.php - - message: '#^Variable \$config might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../index.php - - message: '#^Variable \$m_error might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batchEmail.php - - message: '#^Variable \$m_error_count might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/batchcom/batchEmail.php - - message: '#^Variable \$res might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batchEmail.php - - message: '#^Variable \$res might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batchPhoneList.php - - message: '#^Variable \$check_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batch_phone_notification.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batch_phone_notification.php - - message: '#^Variable \$ssql might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batch_phone_notification.php - - message: '#^Variable \$results_log might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batch_reminders.php - - message: '#^Variable \$send_rem_log might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/batchcom/batch_reminders.php - - message: '#^Variable \$file might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/batchcom/batchcom.inc.php - - message: '#^Variable \$flag_on might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batchcom.inc.php - - message: '#^Variable \$line might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batchcom.inc.php - - message: '#^Variable \$choices might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batchcom.php - - message: '#^Variable \$form_err might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../interface/batchcom/batchcom.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/batchcom.php - - message: '#^Variable \$email_sender might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/emailnotification.php - - message: '#^Variable \$email_subject might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/emailnotification.php - - message: '#^Variable \$form_err might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/batchcom/emailnotification.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/emailnotification.php - - message: '#^Variable \$notification_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/emailnotification.php - - message: '#^Variable \$provider_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/emailnotification.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/emailnotification.php - - message: '#^Variable \$SMS_gateway_apikey might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$SMS_gateway_password might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$SMS_gateway_username might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$Send_Email_Before_Hours might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$Send_SMS_Before_Hours might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$SettingsId might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$form_err might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/settingsnotification.php - - message: '#^Variable \$form_err might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/batchcom/smsnotification.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/smsnotification.php - - message: '#^Variable \$notification_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/smsnotification.php - - message: '#^Variable \$provider_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/smsnotification.php - - message: '#^Variable \$sms_gateway_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/smsnotification.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/batchcom/smsnotification.php - - message: '#^Variable \$CheckBoxBilling might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$default_x12_partner might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$divnos on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$effective_insurances on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$enc_billing_note might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$left_ubmargin might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$top_ubmargin might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$ub04_support might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/billing_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/billing_tracker.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/billing/edi_270.php - - message: '#^Variable \$_FILES in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/billing/edi_271.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/edi_271.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/billing/edi_271.php - - message: '#^Variable \$html_str might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edih_main.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 16 - path: ../interface/billing/edih_main.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edih_view.php - - message: '#^Variable \$AccountCode might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$AdjustString might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$CountIndexAbove might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$CountIndexBelow might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$QueryPart might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$Table might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$TypeCode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$bgcolor might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/edit_payment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/era_payments.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/era_payments.php - - message: '#^Variable \$claim_file_dir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/get_claim_file.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/indigent_patients_report.php - - message: '#^Variable \$CountIndexBelow might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/new_payment.php - - message: '#^Variable \$PaymentType might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/new_payment.php - - message: '#^Variable \$QueryPart might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/new_payment.php - - message: '#^Variable \$TypeCode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/new_payment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/new_payment.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/new_payment.php - - message: '#^Variable \$PayTotal might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/payment_master.inc.php - - message: '#^Variable \$PostToDate might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/payment_master.inc.php - - message: '#^Variable \$global_amount might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/payment_master.inc.php - - message: '#^Variable \$payment_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/payment_master.inc.php - - message: '#^Variable \$screen might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/payment_master.inc.php - - message: '#^Variable \$bgcolor might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/payment_pat_sel.inc.php - - message: '#^Variable \$hidden_patient_code might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/billing/payment_pat_sel.inc.php - - message: '#^Variable \$employer_data_array might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_billing_report.php - - message: '#^Variable \$insurance_data_array might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_billing_report.php - - message: '#^Variable \$patient_data_array might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_billing_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_billing_report.php - - message: '#^Variable \$catch_provider might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$catch_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$fuser_final_list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$gtotal_fee might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$gtotal_insadj might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$gtotal_inspay might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$gtotal_insref might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$gtotal_patadj might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$gtotal_patpay might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$gtotal_patref might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$line_total might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$line_total_pay might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_inspay might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro0_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_inspay might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro10_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro11_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro12_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro13_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro14_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro15_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro16_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro17_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro18_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro19_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro1_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro2_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro3_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro4_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro5_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro6_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro7_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro8_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$pro9_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$provider_info might not be defined\.$#' - identifier: variable.undefined - count: 19 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$query_part_day might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$run_provider might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$totals_only might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us0_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us10_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us11_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us12_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us13_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us14_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us15_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us16_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us17_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us18_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us19_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us1_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us2_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us3_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us4_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us5_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us6_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us7_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us8_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_insref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_patref might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$us9_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$user_info might not be defined\.$#' - identifier: variable.undefined - count: 17 - path: ../interface/billing/print_daysheet_report_num1.php - - message: '#^Variable \$catch_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$gtotal_fee might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$gtotal_insadj might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$gtotal_inspay might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$gtotal_patadj might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$gtotal_patpay might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$query_part_day might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$totals_only might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us0_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us0_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us0_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us0_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us0_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us0_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us10_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us10_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us10_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us10_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us10_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us10_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us11_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us11_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us11_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us11_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us11_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us11_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us12_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us12_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us12_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us12_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us12_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us12_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us13_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us13_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us13_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us13_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us13_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us13_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us14_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us14_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us14_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us14_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us14_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us14_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us15_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us15_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us15_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us15_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us15_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us15_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us16_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us16_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us16_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us16_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us16_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us16_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us17_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us17_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us17_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us17_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us17_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us17_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us18_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us18_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us18_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us18_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us18_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us18_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us19_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us19_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us19_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us19_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us19_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us19_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us1_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us1_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us1_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us1_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us1_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us1_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us2_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us2_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us2_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us2_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us2_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us2_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us3_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us3_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us3_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us3_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us3_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us3_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us4_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us4_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us4_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us4_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us4_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us4_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us5_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us5_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us5_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us5_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us5_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us5_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us6_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us6_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us6_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us6_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us6_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us6_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us7_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us7_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us7_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us7_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us7_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us7_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us8_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us8_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us8_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us8_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us8_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us8_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us9_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us9_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us9_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us9_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us9_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$us9_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$user_info might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../interface/billing/print_daysheet_report_num2.php - - message: '#^Variable \$catch_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$gtotal_fee might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$gtotal_insadj might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$gtotal_inspay might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$gtotal_patadj might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$gtotal_patpay might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$line_total might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$line_total_pay might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$query_part_day might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$totals_only might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us0_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us0_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us0_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us0_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us0_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us0_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us10_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us10_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us10_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us10_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us10_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us10_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us11_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us11_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us11_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us11_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us11_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us11_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us12_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us12_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us12_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us12_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us12_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us12_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us13_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us13_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us13_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us13_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us13_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us13_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us14_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us14_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us14_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us14_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us14_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us14_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us15_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us15_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us15_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us15_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us15_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us15_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us16_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us16_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us16_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us16_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us16_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us16_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us17_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us17_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us17_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us17_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us17_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us17_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us18_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us18_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us18_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us18_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us18_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us18_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us19_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us19_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us19_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us19_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us19_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us19_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us1_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us1_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us1_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us1_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us1_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us1_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us2_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us2_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us2_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us2_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us2_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us2_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us3_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us3_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us3_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us3_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us3_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us3_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us4_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us4_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us4_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us4_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us4_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us4_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us5_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us5_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us5_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us5_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us5_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us5_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us6_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us6_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us6_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us6_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us6_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us6_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us7_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us7_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us7_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us7_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us7_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us7_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us8_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us8_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us8_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us8_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us8_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us8_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us9_fee might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us9_insadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us9_inspay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us9_patadj might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us9_patpay might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$us9_user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$user_info might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../interface/billing/print_daysheet_report_num3.php - - message: '#^Variable \$PaymentDateString might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/search_payments.php - - message: '#^Variable \$ResultSearch might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/search_payments.php - - message: '#^Variable \$StringSessionId might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/search_payments.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/search_payments.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/billing/sl_eob_invoice.php - - message: '#^Variable \$tmpadj on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/billing/sl_eob_invoice.php - - message: '#^Variable \$STMT_PRINT_CMD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/sl_eob_search.php - - message: '#^Variable \$STMT_TEMP_FILE might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/billing/sl_eob_search.php - - message: '#^Variable \$countline might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/sl_eob_search.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/billing/sl_eob_search.php - - message: '#^Variable \$docname might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/sl_receipts_report.php - - message: '#^Variable \$docnameleft might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/sl_receipts_report.php - - message: '#^Variable \$doctotal1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/billing/sl_receipts_report.php - - message: '#^Variable \$doctotal2 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/billing/sl_receipts_report.php - - message: '#^Variable \$patient_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/sl_receipts_report.php - - message: '#^Variable \$thedate might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/billing/sl_receipts_report.php - - message: '#^Variable \$revcod might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/ub04_dispose.php - - message: '#^Variable \$revcode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/ub04_dispose.php - - message: '#^Variable \$revcode2 might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/billing/ub04_dispose.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/ub04_form.php - - message: '#^Variable \$ub04id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/ub04_form.php - - message: '#^Variable \$resultpd might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/billing/ub04_helpers.php - - message: '#^Variable \$optionsLabel in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/clickmap/C_AbstractClickmap.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/code_systems/standard_tables_manage.php - - message: '#^Variable \$deIdentificationStatus might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/de_identification_forms/de_identification_screen1.php - - message: '#^Variable \$no_of_items might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/de_identification_screen1.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/de_identification_forms/de_identification_screen1.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/de_identification_forms/de_identification_screen1.php - - message: '#^Variable \$viewmode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/de_identification_screen1.php - - message: '#^Variable \$deIdentificationStatus might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/de_identification_screen2.php - - message: '#^Variable \$filename might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/de_identification_forms/de_identification_screen2.php - - message: '#^Variable \$include_tables might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/de_identification_forms/de_identification_screen2.php - - message: '#^Variable \$sqlconf might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/de_identification_forms/de_identification_screen2.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/de_identification_forms/de_identification_screen2.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/find_code_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/find_code_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/find_drug_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/find_immunization_popup.php - - message: '#^Variable \$no_of_items might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/re_identification_input_screen.php - - message: '#^Variable \$reIdentificationStatus might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/de_identification_forms/re_identification_input_screen.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/de_identification_forms/re_identification_input_screen.php - - message: '#^Variable \$no_of_items might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/re_identification_op_single_patient.php - - message: '#^Variable \$reIdCode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/re_identification_op_single_patient.php - - message: '#^Variable \$sqlconf might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/de_identification_forms/re_identification_op_single_patient.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/de_identification_forms/re_identification_op_single_patient.php - - message: '#^Variable \$status might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/de_identification_forms/re_identification_op_single_patient.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/drugs/add_edit_drug.php - - message: '#^Variable \$tres might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/drugs/add_edit_drug.php - - message: '#^Variable \$row might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/drugs/add_edit_lot.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/drugs/add_edit_lot.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/drugs/dispense_drug.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/drugs/dispense_drug.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/drugs/dispense_drug.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/drugs/drug_inventory.php - - message: '#^Access to an undefined property eRxPage\:\:\$prescriptions\.$#' - identifier: property.notFound - count: 1 - path: ../interface/eRxPage.php - - message: '#^Undefined variable\: \$encounter$#' - identifier: variable.undefined - count: 1 - path: ../interface/eRxSOAP.php - - message: '#^Undefined variable\: \$jasonzip$#' - identifier: variable.undefined - count: 2 - path: ../interface/eRx_xml.php - - message: '#^Undefined variable\: \$prec$#' - identifier: variable.undefined - count: 1 - path: ../interface/eRx_xml.php - - message: '#^Variable \$jasonzip might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/eRx_xml.php - - message: '#^Variable \$num might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/eRx_xml.php - - message: '#^Variable \$txt might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/eRx_xml.php - - message: '#^Variable \$zip4 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/eRx_xml.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/easipro/pro.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/easipro/pro.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/easipro/pro.php - - message: '#^Variable \$arr_files_php might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/expand_contract_js.php - - message: '#^Variable \$catid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/fax/fax_dispatch.php - - message: '#^Variable \$erow might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/fax/fax_dispatch.php - - message: '#^Variable \$newid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/fax/fax_dispatch.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/fax/fax_dispatch.php - - message: '#^Variable \$tmp_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/fax/fax_dispatch.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/fax/fax_dispatch.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/fax/fax_dispatch.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/ajax_save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/CAMOS/ajax_save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/CAMOS/ajax_save.php - - message: '#^Undefined variable\: \$encounter$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/content_parser.php - - message: '#^Variable \$justify_trimmed might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/content_parser.php - - message: '#^Variable \$code_list in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$days_ago might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$last_encounter_id might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$subtablename might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$tablename might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$tmp in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$to_alter_column might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$to_alter_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$to_alter_table might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$to_delete_from_subtable might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$to_delete_from_table might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$to_delete_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/CAMOS/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/CAMOS/notegen.php - - message: '#^Variable \$name might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/CAMOS/notegen.php - - message: '#^Variable \$user_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/CAMOS/notegen.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/print.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/CAMOS/view.php - - message: '#^Function cms_field_to_lbf not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/forms/LBF/new.php - - message: '#^Function cms_portal_call not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/forms/LBF/new.php - - message: '#^Undefined variable\: \$BS_COL_CLASS$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$BS_COL_CLASS might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$date_init might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$enrow might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$fs might not be defined\.$#' - identifier: variable.undefined - count: 15 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$ignoreAuth_onsite_portal might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 18 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$svccount might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/LBF/new.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/LBF/printable.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/LBF/printable.php - - message: '#^Variable \$pdf might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/LBF/printable.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/LBF/printable.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/LBF/printable.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/LBF/printable.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/LBF/printable.php - - message: '#^Variable \$disabled might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/aftercare_plan/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/aftercare_plan/new.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/aftercare_plan/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/aftercare_plan/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/aftercare_plan/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/aftercare_plan/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/aftercare_plan/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/aftercare_plan/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/aftercare_plan/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ankleinjury/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ankleinjury/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ankleinjury/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ankleinjury/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/ankleinjury/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/ankleinjury/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ankleinjury/view.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ankleinjury/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/bronchitis/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/bronchitis/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/bronchitis/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/bronchitis/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/bronchitis/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/bronchitis/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/bronchitis/view.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/bronchitis/view.php - - message: '#^Variable \$all might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/care_plan/new.php - - message: '#^Variable \$care_plan_type might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/care_plan/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/care_plan/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/care_plan/new.php - - message: '#^Variable \$data might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/care_plan/report.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/care_plan/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/care_plan/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/care_plan/save.php - - message: '#^Variable \$key might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/care_plan/templates/careplan_actions.php - - message: '#^Variable \$key might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/care_plan/templates/careplan_reason_row.php - - message: '#^Variable \$reasonCodeStatii might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/care_plan/templates/careplan_reason_row.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/clinic_note/new.php - - message: '#^Variable \$top_bg_line might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/new.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/view.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/view.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/clinic_note/view.php - - message: '#^Variable \$top_bg_line might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/view.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinic_note/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinical_instructions/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/clinical_instructions/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinical_instructions/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/clinical_instructions/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/clinical_instructions/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinical_instructions/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/clinical_notes/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/clinical_notes/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/clinical_notes/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/clinical_notes/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/dictation/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/dictation/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/dictation/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/dictation/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/dictation/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/dictation/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/dictation/view.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/dictation/view.php - - message: '#^Variable \$BPDN might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$CTLODQUANTITY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$CTLOSQUANTITY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$CTL_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$LENS_MATERIAL might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$LENS_TREATMENTS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODADD2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODCYL might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODHBASE might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODHPD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODMIDADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODMPDN might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODSLABOFF might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODVBASE might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODVERTEXDIST might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$ODVPD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSADD2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSCYL might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSHBASE might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSHPD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSMIDADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSMPDN might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSSLABOFF might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSVBASE might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSVERTEXDIST might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$OSVPD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$REFTYPE might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$RXTYPE might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$Single might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$detailed might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$form_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$i might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$insert_this_id might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/SpectacleRx.php - - message: '#^Variable \$HELLO might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ISSUE_CLASSIFICATIONS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSCOMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSCV might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSDERM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSENDOCRINE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSGENERAL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSGI might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSGU might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSHEENT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSIMMUNO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSMUSCULO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSNEURO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSPSYCH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$ROSPULM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$result2 might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$subtype might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$type_index might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/a_issue.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/help.php - - message: '#^Variable \$ANTSEG might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/js/eye_base.php - - message: '#^Variable \$EXT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/js/eye_base.php - - message: '#^Variable \$NEURO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/js/eye_base.php - - message: '#^Variable \$RETINA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/js/eye_base.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/js/eye_base.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/new.php - - message: '#^Function build_PMSFH invoked with 0 parameters, 1 required\.$#' - identifier: arguments.count - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Undefined variable\: \$header1$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Undefined variable\: \$k$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Undefined variable\: \$old_OCTs$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Undefined variable\: \$old_VFs$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT10CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT10CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT10SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT10SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT11CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT11CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT11SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT11SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT1CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT1CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT1SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT1SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT2CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT2CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT2SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT2SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT3CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT3CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT3SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT3SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT4CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT4CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT4SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT4SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT5CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT5CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT5SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT5SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT6CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT6CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT6SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT6SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT7CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT7CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT7SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT7SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT8CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT8CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT8SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT8SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT9CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT9CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT9SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ACT9SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ANTSEG_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARODSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ARODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$AROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$AROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$AROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$AROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$AROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$AROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ATROPINE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$BPDD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$BPDN on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CACCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CACCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$COMMENTS on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CONTRASTODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRODSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CRODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLODBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLODDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLODSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLOSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLOSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLOSBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLOSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLOSDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLOSSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLSUPPLIEROD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CTLSUPPLIEROS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CYCLOGYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$CYCLOMYDRIL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$DACCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$DACCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$DIL_MEDS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$DM_code might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$DX might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$EXT_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$FAILED_drug might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$FAILED_drugs might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$GLAREODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$GLAREOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$GONIO_values might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$HERTELBASE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LADNEXA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LBROW might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LCAROTID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LCNV might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LCNVII might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LENS_MATERIAL on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LENS_TREATMENTS on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LIODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LIOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LLF might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LLL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LMCT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LMRD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LTEMPART might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LUL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$LVFISSURE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITYNORMAL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LI might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LLIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LLSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LRIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LRSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_LS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RI might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RLIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RLSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RRIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RRSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MOTILITY_RS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRODSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MRODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$MROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$NEARODVA on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$NEAROSVA on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$NEO25 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$NEURO_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$NPC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OCT_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OCT_values might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODAC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODACD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODADD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODAXIALLENGTH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODAXIS on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODCMT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODCOINS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODCOLOR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODCONJ might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODCORNEA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODCUP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODCYL on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODDISC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODECL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODGONIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODHBASE on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODHERTEL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODHPD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODIOP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODIOPTARGET might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODIOPTARGETS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODIOPTARGET_values might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODIRIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODK1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODK2 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODK2AXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODKTHICKNESS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODLENS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODLT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODMACULA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODMIDADD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODMPDD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODMPDN on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODNPA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODPERIPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODREDDESAT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODSCHIRMER1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODSCHIRMER2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODSLABOFF on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODSPH on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODTBUT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODVA on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODVBASE on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODVERTEXDIST on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODVESSELS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODVITREOUS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODVPD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$ODW2W might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OD_methods might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OD_time_values might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OD_values might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSAC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSACD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSADD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSAXIALLENGTH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSAXIS on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSCMT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSCOINS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSCOLOR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSCONJ might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSCORNEA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSCUP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSCYL on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSDISC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSECL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSGONIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSHBASE on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSHERTEL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSHPD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSIOPTARGET might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSIOPTARGETS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSIOPTARGET_values might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSIRIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSK1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSK2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSK2AXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSKTHICKNESS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSLENS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSLT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSMACULA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSMIDADD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSMPDD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSMPDN on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSNPA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSPERIPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSREDDESAT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSSCHIRMER1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSSCHIRMER2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSSLABOFF on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSSPH on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSTBUT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSVA on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSVBASE on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSVERTEXDIST on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSVESSELS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSVITREOUS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSVPD on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OSW2W might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OS_methods might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OS_time_values might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$OS_values might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$PAMODBA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$PAMODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$PAMOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$PHODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$PHOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$PMFSH on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RADNEXA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RBROW might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RCAROTID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RCNV might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RCNVII might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RETINA_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RLF might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RLL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RMCT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RMRD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RTEMPART might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RUL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RVFISSURE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RX_TYPE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$RX_TYPE on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 5 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$STEREOPSIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$TROPICAMIDE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$VABINOC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$VERTFUSAMPS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$VF_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$VF_values might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$VISITS_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$action might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$all might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$categories might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$children_names might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$clinical_terms might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$code might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$code_found in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$count might not be defined\.$#' - identifier: variable.undefined - count: 16 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$current_OCT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$current_VF might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$display_Add might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$display_PMSFH might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$encounter_date on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$fullscreen on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$gonios might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$here might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$hideme might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$hit_RVO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$id on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$item on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$my_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$number_rows on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$output might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$parent_name in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$parent_name on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$pend might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$sub_term might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$time might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$time_OU might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$total_PMSFH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$zones might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/eye_mag_functions.php - - message: '#^Variable \$encounter_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/taskman_functions.php - - message: '#^Variable \$form_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/php/taskman_functions.php - - message: '#^Variable \$sent_date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/php/taskman_functions.php - - message: '#^Undefined variable\: \$id$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Undefined variable\: \$table_name$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT10CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT10CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT10SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT10SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT11CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT11CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT11SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT11SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT1CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT1CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT1SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT1SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT2CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT2CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT2SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT2SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT3CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT3CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT3SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT3SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT4CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT4CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT4SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT4SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT5CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT5CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT5SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT5SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT6CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT6CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT6SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT6SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT7CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT7CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT7SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT7SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT8CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT8CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT8SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT8SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT9CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT9CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT9SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ACT9SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AMSLEROD might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AMSLEROS might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ANTSEG_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARODSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ARODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$AROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ASSOCIATED1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ASSOCIATED2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ASSOCIATED3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CACCDIST might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CACCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CC1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CC2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CC3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CHRONIC1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CHRONIC2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CHRONIC3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CONTEXT1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CONTEXT2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CONTEXT3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CONTRASTODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CONTRASTOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRCOMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRODSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CRODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLODBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLODDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLODSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLOSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLOSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLOSBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLOSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLOSDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLOSSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLOSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLSUPPLIEROD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$CTLSUPPLIEROS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DACCDIST might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DACCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DIL_MEDS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DIMODPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DIMODPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DIMOSPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DIMOSPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DURATION1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DURATION2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DURATION3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$EXT_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$GLAREODVA might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$GLAREOSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$HERTELBASE might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$HPI1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$HPI2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$HPI3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$IOPTIME might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LADNEXA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LBROW might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LCAROTID might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LCNV might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LCNVII might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LIODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LIOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LLF might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LLL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LMCT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LMRD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LOCATION1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LOCATION2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LOCATION3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LTEMPART might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LUL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$LVFISSURE might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MODIFY1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MODIFY2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MODIFY3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITYNORMAL might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_L0 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_LI might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_LL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_LLIO might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_LLSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_LR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_LRSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_LS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_R0 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RI might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RLIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RLSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RRIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RRSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MOTILITY_RS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRODSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MRODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$MROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$NEURO_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$NPC might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODAC might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODACD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODAPD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODAXIALLENGTH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODCMT might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODCOINS might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODCOLOR might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODCONJ might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODCORNEA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODCUP might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODDISC might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODECL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODGONIO might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODHERTEL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODIOPAP might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODIOPFTN might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODIOPTPN might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODIRIS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODK1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODK2 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODK2AXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODKTHICKNESS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODLENS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODLT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODMACULA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODNEARVA_1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODNPA might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODNPC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODPERIPH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODPUPILREACTIVITY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODREDDESAT might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODSCHIRMER1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODSCHIRMER2 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODTBUT might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODVA_1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODVESSELS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODVF1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODVF2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODVF3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODVF4 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODVITREOUS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$ODW2W might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSAC might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSACD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSAPD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSAXIALLENGTH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSCMT might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSCOINS might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSCOLOR might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSCONJ might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSCORNEA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSCUP might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSDISC might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSECL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSGONIO might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSHERTEL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSIOPAP might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSIOPFTN might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSIOPTPN might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSIRIS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSK1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSK2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSK2AXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSKTHICKNESS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSLENS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSLT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSMACULA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSNEARVA_1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSNPA might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSNPC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSPERIPH might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSPUPILREACTIVITY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSREDDESAT might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSSCHIRMER1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSSCHIRMER2 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSTBUT might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSVA_1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSVESSELS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSVF1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSVF2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSVF3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSVF4 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSVITREOUS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$OSW2W might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$PAMODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$PAMOSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$PHODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$PHOSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$PLAN_results in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$PUPIL_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$PUPIL_NORMAL might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$QUALITY1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$QUALITY2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$QUALITY3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RADNEXA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RBROW might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RCAROTID might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RCNV might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RCNVII might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RETINA_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RLF might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RLL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RMCT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RMRD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RTEMPART might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RUL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RVFISSURE might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$RX_TYPE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$SCNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$SCNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$SCODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$SCOSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$SEVERITY1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$SEVERITY2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$SEVERITY3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$STEREOPSIS might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$TIMING1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$TIMING2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$TIMING3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$VERTFUSAMPS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$bad on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$display_Add might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$encounter_date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$pend might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/report.php - - message: '#^Variable \$DOCS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$N might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$PMSFH might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$category_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$dups might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$form_encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$form_injury_part might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$form_injury_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$form_return might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$ndc_info might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$new_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$printable might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$text_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$visit_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/eye_mag/taskman.php - - message: '#^Variable \$ACT might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT10CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT10CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT10SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT10SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT11CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT11CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT11SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT11SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT1CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT1CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT1SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT1SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT2CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT2CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT2SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT2SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT3CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT3CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT3SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT3SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT4CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT4CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT4SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT4SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT5CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT5CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT5SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT5SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT6CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT6CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT6SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT6SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT7CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT7CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT7SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT7SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT8CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT8CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT8SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT8SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT9CCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT9CCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT9SCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ACT9SCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AMSLEROD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AMSLEROS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ANTSEG_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARODSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ARODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$AROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ASSOCIATED1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ASSOCIATED2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ASSOCIATED3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ATROPINE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$BALANCED might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$BINOCVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CACCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CACCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CC1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CC2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CC3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CHRONIC1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CHRONIC2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CHRONIC3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CONTEXT1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CONTEXT2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CONTEXT3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CRCOMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CRODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CRODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CRODSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CRODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLBRANDOD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLBRANDOS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLBRAND_list_OD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLBRAND_list_OS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLMANUFACTUREROD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLMANUFACTUREROS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLODBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLODDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLODSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLOSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLOSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLOSBC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLOSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLOSDIAM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLOSSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLOSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLSUPPLIEROD might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTLSUPPLIEROS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CTL_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CYCLOGYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$CYCLOMYDRIL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DACCDIST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DACCNEAR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DIL_MEDS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DIL_RISKS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DIMODPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DIMODPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DIMOSPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DIMOSPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DURATION1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DURATION2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$DURATION3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$EXT_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$GLAREODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$GLAREOSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$HERTELBASE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$HPI1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$HPI2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$HPI3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$IMP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$IOPTIME might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LADNEXA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LBROW might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LCAROTID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LCNV might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LCNVII might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LIODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LIOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LLF might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LLL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LMCT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LMRD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LOCATION1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LOCATION2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LOCATION3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LOCKED might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LOCKED on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LOCKEDBY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LOCKEDBY on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LTEMPART might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LUL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$LVFISSURE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MODIFY1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MODIFY2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MODIFY3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITYNORMAL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LI might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LL might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LLIO might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LLSO might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LR might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LRIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LRSO might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_LS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RI might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RL might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RLIO might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RLSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RR might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RRIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RRSO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MOTILITY_RS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRODADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRODAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRODCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRODPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRODSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MRODVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MROSADD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MROSAXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MROSCYL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MROSPRISM might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MROSSPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$MROSVA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$NEO25 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$NEURO_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$NPC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODAC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODACD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODAPD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODAXIALLENGTH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODCMT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODCOINS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODCOLOR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODCONJ might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODCORNEA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODCUP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODDISC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODGONIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODHERTEL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODIOPAP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODIOPFTN might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODIOPPOST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODIOPTPN might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODIRIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODK1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODK2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODK2AXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODKTHICKNESS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODLENS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODLT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODMACULA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODNPA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODPERIPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODPUPILREACTIVITY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODREDDESAT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODSCHIRMER1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODSCHIRMER2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODTBUT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODVESSELS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODVF1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODVF2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODVF3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODVF4 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODVITREOUS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$ODW2W might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSAC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSACD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSAPD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSAXIALLENGTH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSCMT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSCOINS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSCOLOR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSCONJ might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSCORNEA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSCUP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSDISC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSGONIO might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSHERTEL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSIOPAP might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSIOPFTN might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSIOPPOST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSIOPTPN might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSIRIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSK1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSK2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSK2AXIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSKTHICKNESS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSLENS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSLT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSMACULA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSNPA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSPDMeasured might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSPERIPH might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSPUPILREACTIVITY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSPUPILSIZE1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSPUPILSIZE2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSREDDESAT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSSCHIRMER1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSSCHIRMER2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSTBUT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSVESSELS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSVF1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSVF2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSVF3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSVF4 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSVITREOUS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$OSW2W might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$PAMODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$PAMOSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$PHODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$PHOSVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$PUPIL_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$PUPIL_NORMAL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$QUALITY1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$QUALITY2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$QUALITY3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RADNEXA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RBROW might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RCAROTID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RCNV might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RCNVII might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RETINA_COMMENTS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RLF might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RLL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RMCT might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RMRD might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RTEMPART might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RUL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$RVFISSURE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$SCNEARODVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$SCNEAROSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$SCODVA might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$SCOSVA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$SEVERITY1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$SEVERITY2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$SEVERITY3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$STEREOPSIS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$TIMING1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$TIMING2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$TIMING3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$TROPICAMIDE might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$VERTFUSAMPS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$WETTYPE might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$alert might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$confused might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 28 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$encounter_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$found on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$oriented might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$provider_id might not be defined\.$#' - identifier: variable.undefined - count: 12 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$setting_SDRETINA on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$uniqueID on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/eye_mag/view.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/code_choice/initialize_code_choice.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/contraception_products/initialize_contraception_products.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/contraception_products/initialize_contraception_products.php - - message: '#^Variable \$cleave_opt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$fee in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$ndc_applies might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$revenue_code might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/new.php - - message: '#^Variable \$entry might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/code_check.php - - message: '#^Variable \$database might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$issues might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$json_diags might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$json_procs might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$req_encounter might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$req_pid might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$task might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_classes.php - - message: '#^Variable \$billing_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php - - message: '#^Variable \$database might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php - - message: '#^Variable \$json_diags might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php - - message: '#^Variable \$req_encounter might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php - - message: '#^Variable \$req_pid might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php - - message: '#^Variable \$task might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/review/fee_sheet_justify.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/fee_sheet/review/fee_sheet_queries.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_search_queries.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/initialize_review.php - - message: '#^Variable \$isBilled might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/initialize_review.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/initialize_review.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/fee_sheet/review/initialize_review.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/views/review.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/functional_cognitive_status/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/functional_cognitive_status/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/functional_cognitive_status/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/functional_cognitive_status/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/functional_cognitive_status/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/gad7/gad7.inc.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_default might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_extremely might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_form_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_form_title might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_more might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_nearly might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_nosave_confirm might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_nosave_exit might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_not might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_q8 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_q8_2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_several might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_somewhat might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$str_very might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/new.php - - message: '#^Variable \$data might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/report.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/gad7/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/gad7/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_afraid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_annoyed might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_control_worry might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_default might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_extremely might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_form_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_form_title might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_more might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_nearly might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_nervous might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_nosave_confirm might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_nosave_exit might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_not might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_q8 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_q8_2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_relax might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_restless might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_several might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_somewhat might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_very might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$str_worry might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/gad7/view.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/group_attendance/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/group_attendance/new.php - - message: '#^Variable \$therapy_group might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/group_attendance/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/group_attendance/save.php - - message: '#^Variable \$therapy_group might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/group_attendance/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/group_attendance/save.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/misc_billing_options/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/misc_billing_options/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/misc_billing_options/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/misc_billing_options/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/misc_billing_options/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/misc_billing_options/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/misc_billing_options/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/misc_billing_options/save.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/misc_billing_options/save.php - - message: '#^Variable \$disabled might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$posCode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 14 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$therapyGroupCategories might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$therapy_group might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$viewmode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/common.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/newGroupEncounter/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newGroupEncounter/view.php - - message: '#^Variable \$body_javascript on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php - - message: '#^Variable \$override in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php - - message: '#^Variable \$rootdir on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php - - message: '#^Variable \$userauthorized on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/newpatient/C_EncounterVisitForm.class.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/newpatient/common.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newpatient/common.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/newpatient/common.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newpatient/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/newpatient/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/newpatient/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/newpatient/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/newpatient/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/newpatient/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/note/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/note/new.php - - message: '#^Variable \$obj might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/note/print.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/note/print.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/note/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/note/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/note/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/note/save.php - - message: '#^Variable \$obj might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/forms/note/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/note/view.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/note/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_default might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_extremely might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_form_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_form_title might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_more might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_nearly might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_nosave_confirm might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_not might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_q10 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_q10_2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_several might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_somewhat might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$str_very might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$viewmode might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/phq9/common.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/phq9/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/phq9/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/phq9/save.php - - message: '#^Variable \$issue might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/physical_exam/edit_diagnoses.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/physical_exam/new.php - - message: '#^Variable \$pelines might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/physical_exam/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/physical_exam/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/physical_exam/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/physical_exam/new.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/physical_exam/new.php - - message: '#^Constructor of class FormPriorAuth has an unused parameter \$_prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../interface/forms/prior_auth/FormPriorAuth.class.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/prior_auth/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/prior_auth/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/prior_auth/view.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/procedure_order/common.php - - message: '#^Variable \$isDorn might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/procedure_order/common.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../interface/forms/procedure_order/common.php - - message: '#^Variable \$ppid on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/forms/procedure_order/common.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/procedure_order/common.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/procedure_order/common.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/procedure_order/common.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/procedure_order/delete.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/procedure_order/delete.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/procedure_order/delete.php - - message: '#^Variable \$i might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/procedure_order/templates/procedure_reason_row.php - - message: '#^Variable \$reasonCodeStatii might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/procedure_order/templates/procedure_reason_row.php - - message: '#^Variable \$do_warning might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php - - message: '#^Variable \$mode might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/questionnaire_assessments/questionnaire_assessments.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/questionnaire_assessments/save.php - - message: '#^Variable \$formid in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/forms/questionnaire_assessments/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/questionnaire_assessments/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/questionnaire_assessments/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/questionnaire_assessments/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/requisition/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/reviewofs/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/reviewofs/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/reviewofs/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/reviewofs/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/reviewofs/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/reviewofs/save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/reviewofs/view.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/reviewofs/view.php - - message: '#^Constructor of class FormROS has an unused parameter \$_prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../interface/forms/ros/FormROS.class.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ros/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ros/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/ros/view.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/sdoh/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/sdoh/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/sdoh/save.php - - message: '#^Variable \$formid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/sdoh/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/sdoh/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/sdoh/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/sdoh/save.php - - message: '#^Constructor of class FormSOAP has an unused parameter \$_prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../interface/forms/soap/FormSOAP.class.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/soap/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/soap/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/soap/view.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/create.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/create.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/track_anything/create.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/track_anything/create.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/forms/track_anything/create.php - - message: '#^Variable \$fromencounter might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/track_anything/history.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/history.php - - message: '#^Variable \$row might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/history.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/history.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/track_anything/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/track_anything/new.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/new.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/track_anything/new.php - - message: '#^Variable \$showbutton might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/track_anything/report.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/transfer_summary/new.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/transfer_summary/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/transfer_summary/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/transfer_summary/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/transfer_summary/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/transfer_summary/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/transfer_summary/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/transfer_summary/save.php - - message: '#^Variable \$disabled might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/treatment_plan/new.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/treatment_plan/new.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/treatment_plan/new.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/treatment_plan/new.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/treatment_plan/new.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/treatment_plan/save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/treatment_plan/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/treatment_plan/save.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms/treatment_plan/save.php - - message: '#^Variable \$results might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/C_FormVitals.class.php - - message: '#^Variable \$HC_delta_x might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$HC_delta_y might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$HC_dot_x might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$HC_dot_y might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$HT_delta_x might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$HT_x might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$HToffset might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$WT_delta_y might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$WT_y might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$WToffset might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$age might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$age_in_months might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$ageinYMD might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$bmi might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$bmi_delta_x might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$bmi_delta_y might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$bmi_dot_x might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$bmi_dot_y might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$chart might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$chartCss1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$chartCss2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$datatable2_bmi_offset might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$datatable2_hc_offset might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$datatable_bmi_offset might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$datatable_hc_offset might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$dob might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$pid in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/forms/vitals/growthchart/chart.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/vitals/new.php - - message: '#^Variable \$bps might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/vitals/report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/vitals/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/vitals/view.php - - message: '#^Variable \$inDir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/forms_admin/forms_admin.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/forms_admin/forms_admin.php - - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/globals.php - - message: '#^Variable \$portal_temp_css_theme_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/globals.php - - message: '#^Variable \$temp_css_theme_name might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/globals.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/globals.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/help_modal.php - - message: '#^Variable \$create might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/csv/translation_utilities.php - - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/lang_definition.php - - message: '#^Variable \$go might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/lang_definition.php - - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/lang_manage.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/language/language.php - - message: '#^Variable \$openemr_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/login/login.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/login_screen.php - - message: '#^Variable \$getevent might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/logview/logview.php - - message: '#^Variable \$openemr_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/about_page.php - - message: '#^Variable \$authorize might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$groupname might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$result1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$result2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$result3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$result4 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$tmore might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations.php - - message: '#^Variable \$authorize might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/authorizations/authorizations_full.php - - message: '#^Variable \$groupname might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/authorizations/authorizations_full.php - - message: '#^Variable \$result3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations_full.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations_full.php - - message: '#^Variable \$tback might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/authorizations/authorizations_full.php - - message: '#^Function gzopen64 not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/main/backup.php - - message: '#^Variable \$UOR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/backup.php - - message: '#^Variable \$datatypes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/backup.php - - message: '#^Variable \$sources might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/backup.php - - message: '#^Variable \$sqlconf might not be defined\.$#' - identifier: variable.undefined - count: 46 - path: ../interface/main/backup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/backup.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/backup.php - - message: '#^Variable \$zipname might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/backup.php - - message: '#^Variable \$sqlconf might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/main/backuplog.php - - message: '#^Variable \$duration might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$e2f might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$endtime might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$event_date might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$exdates in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$locationspec might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$multiple_value might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$my_recurrtype might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$new_eid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$noRecurrspec might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$providers_current might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$recurrence_end_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$recurrspec might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$starttime might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/main/calendar/add_edit_event.php - - message: '#^Variable \$isProv might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/find_appt_popup.php - - message: '#^Variable \$providerid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/find_appt_popup.php - - message: '#^Variable \$slots might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/find_appt_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/find_appt_popup.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/find_group_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/find_group_popup.php - - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/main/calendar/find_patient_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/find_patient_popup.php - - message: '#^Variable \$_GLOBALS might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/calendar/includes/pnAPI.php - - message: '#^Method pnHTML\:\:EndPage\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:FormEnd\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:FormHidden\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:FormSelectMultiple\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:FormStart\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:FormSubmit\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:Linebreak\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:StartPage\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Method pnHTML\:\:Text\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../interface/main/calendar/includes/pnHTML.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/index.php - - message: '#^Constant _CALAPR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALAUG not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALDEC not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALFEB not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALJAN not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALJUL not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALJUN not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALMAR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALMAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALNOV not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALOCT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _CALSEP not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _PC_OL_CLOSE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Variable \$pcDir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/calendar/modules/PostCalendar/common.api.php - - message: '#^Constant _SETTING_DATE_FORMAT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _SETTING_DAY_HICOLOR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _SETTING_DISPLAY_TOPICS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _SETTING_TEMPLATE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _SETTING_TIME_24HOUR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _SETTING_USE_INT_DATES not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _SETTING_USE_POPUPS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Variable \$template_view in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pcSmarty.class.php - - message: '#^Constant _PC_LOCALE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_format.php - - message: '#^Constant _SETTING_DATE_FORMAT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_format.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_format.php - - message: '#^Constant _CAL_DAYVIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Constant _CAL_MONTHVIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Constant _CAL_WEEKVIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Constant _CAL_YEARVIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Constant _PC_JUMP_MENU_SUBMIT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Variable \$d in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Variable \$m in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Variable \$viewtype in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Variable \$y in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_date_select.php - - message: '#^Constant _PC_FILTER_CATEGORY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _PC_FILTER_TOPIC not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _PC_FILTER_USERS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _PC_FILTER_USERS_ALL not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _PC_TPL_VIEW_SUBMIT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _SETTING_DISPLAY_TOPICS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _SETTING_TEMPLATE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Variable \$catoptions might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Variable \$class might not be defined\.$#' - identifier: variable.undefined - count: 11 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Variable \$pcTemplate in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Variable \$useroptions might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Variable \$viewtype in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_filter.php - - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_form_nav_close.php - - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_form_nav_open.php - - message: '#^Constant _SETTING_USE_POPUPS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_popup.php - - message: '#^Variable \$sticky might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_popup.php - - message: '#^Variable \$text might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_popup.php - - message: '#^Variable \$function might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php - - message: '#^Variable \$order might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php - - message: '#^Variable \$sort might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php - - message: '#^Variable \$value might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_sort_events.php - - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php - - message: '#^Constant _SETTING_OPEN_NEW_WINDOW not found\.$#' - identifier: constant.notFound - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php - - message: '#^Variable \$link might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php - - message: '#^Variable \$localpath might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php - - message: '#^Variable \$setdeftime might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_url.php - - message: '#^Constant _PC_TPL_VIEW_SUBMIT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Constant _SETTING_TEMPLATE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Variable \$d in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Variable \$m in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Variable \$pcTemplate in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Variable \$viewtype in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Variable \$y in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/function.pc_view_select.php - - message: '#^Constant _PC_LOCALE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/modifier.pc_date_format.php - - message: '#^Constant _SETTING_DATE_FORMAT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/modifier.pc_date_format.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/plugins/modifier.pc_date_format.php - - message: '#^Constant _ACO not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _EDIT_PC_CONFIG_CATDETAILS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _EDIT_PC_CONFIG_CATEGORIES not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_ACTIVE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_ADD_CAT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_ALL_DAY_CAT_NO not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_ALL_DAY_CAT_TITLE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_ALL_DAY_CAT_YES not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_ARE_YOU_SURE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CACHE_CLEARED not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CATS_CONFIRM not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_CLINIC not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_COLOR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_CONSTANT_ID not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_DELETE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_DESC not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_DESC_XL not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_DUR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_NAME not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_NAME_XL not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_PATIENT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_PROVIDER not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_THERAPY_GROUP not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CAT_TYPE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_CLEAR_CACHE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_COLOR_PICK_TITLE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_DELETE_CATS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_DURATION_HOUR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_DURATION_MIN not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_END_DATE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_1ST not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_2ND not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_3RD not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_4TH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_DAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_FOURTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_FRI not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_LAST not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_MON not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_MONTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_OTHER not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_SAT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_SUN not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_THIRD not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_THU not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_TUE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_WED not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_WEEK not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_WORKDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_EVERY_YEAR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_MODIFY_CATS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_MONTHS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_NEW_CAT_TITLE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_NEW_CAT_TITLE_S not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_NO_END not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_NO_REPEAT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_OF_EVERY_2MONTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_OF_EVERY_3MONTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_OF_EVERY_4MONTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_OF_EVERY_6MONTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_OF_EVERY_MONTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_OF_EVERY_YEAR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_OF_THE_MONTH not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_REPEAT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_REPEATING_HEADER not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_REPEAT_ON not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_REP_CAT_TITLE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_REP_CAT_TITLE_S not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_SEQ not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Constant _PC_TEST_SYSTEM not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Undefined variable\: \$msg$#' - identifier: variable.undefined - count: 7 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Variable \$dels might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Variable \$msg on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Variable \$new_recurrfreq on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Variable \$newnam in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadmin.php - - message: '#^Variable \$aco might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$active might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$color might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$constantid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$desc might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$duration might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$end_all_day might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$end_date_flag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$end_date_freq might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$end_date_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$limitid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$recurrfreq might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$repeat might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$sequence might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$spec might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$value_cat_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnadminapi.php - - message: '#^Variable \$cDay might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pntemplates/default/views/monthSelector.php - - message: '#^Constant _SETTING_DEFAULT_VIEW not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Constant _SETTING_DISPLAY_TOPICS not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Constant _SETTING_TEMPLATE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Constant _SETTING_USE_INT_DATES not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Undefined variable\: \$day$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Undefined variable\: \$month$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Undefined variable\: \$sqlKeywords$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$ProviderID in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$day on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$end in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$month on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$pc_category in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$pc_facility in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$pc_topic in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$s_category in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$s_topic in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$sqlKeywords in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$start in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$submit in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 3 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$tmpDate in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Variable \$year on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuser.php - - message: '#^Constant _CALAPR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALAUG not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALDEC not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALFEB not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALFRIDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALFRIDAYSHORT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALJAN not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALJUL not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALJUN not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALMAR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALMAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALMONDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALMONDAYSHORT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALNOV not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALOCT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALSATURDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALSATURDAYSHORT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALSEP not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALSUNDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALSUNDAYSHORT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALTHURSDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALTHURSDAYSHORT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALTUESDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALTUESDAYSHORT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALWEDNESDAY not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _CALWEDNESDAYSHORT not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _SETTING_FIRST_DAY_WEEK not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _SETTING_TEMPLATE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _USER_BUSY_MESSAGE not found\.$#' - identifier: constant.notFound - count: 4 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Constant _USER_BUSY_TITLE not found\.$#' - identifier: constant.notFound - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$cacheid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$category in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$ending_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$etime might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$event_status might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$nuke_users might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$patient_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$pc_username in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$provider_id might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$s_keywords in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$starting_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$stime might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$template_view in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$topic in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$userid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$viewtype might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/calendar/modules/PostCalendar/pnuserapi.php - - message: '#^Variable \$pnconfig might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/calendar/pntables.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/dated_reminders/dated_reminders.php - - message: '#^Variable \$ReminderSent might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/dated_reminders/dated_reminders_add.php - - message: '#^Variable \$patientID in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/dated_reminders/dated_reminders_add.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/dated_reminders/dated_reminders_add.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/dated_reminders/dated_reminders_add.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/dated_reminders/dated_reminders_log.php - - message: '#^Variable \$dates might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/display_documents.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/display_documents.php - - message: '#^Variable \$result in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/main/finder/document_select.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/finder/dynamic_finder.php - - message: '#^Variable \$aColumns might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/main/finder/dynamic_finder_ajax.php - - message: '#^Variable \$results might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/finder/multi_patients_finder.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/finder/multi_patients_finder.php - - message: '#^Variable \$results might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/finder/multi_patients_finder_ajax.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/finder/multi_patients_finder_ajax.php - - message: '#^Variable \$add_days might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$extracols might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$itemized_test_id might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$numerator_label might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$pass_id might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$report_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$where in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/finder/patient_select.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/ippf_export.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/main_screen.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/lab_results_messages.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/messages/lab_results_messages.php - - message: '#^Variable \$where might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/lab_results_messages.php - - message: '#^Variable \$background might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$body might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$cursor might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$message_legend might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$reply_to in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$title in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/messages.php - - message: '#^Variable \$prov_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/print_postcards.php - - message: '#^Function updateMessage not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/main/messages/save.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/save.php - - message: '#^Variable \$facilities might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/save.php - - message: '#^Variable \$providers might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/save.php - - message: '#^Variable \$results might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/messages/save.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/messages/save.php - - message: '#^Variable \$enc_list in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/main/messages/templates/linked_documents.php - - message: '#^Variable \$row might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/templates/linked_documents.php - - message: '#^Variable \$documentId might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/messages/trusted-messages-ajax.php - - message: '#^Variable \$error might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/messages/trusted-messages-ajax.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/messages/trusted-messages-ajax.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/messages/trusted-messages-ajax.php - - message: '#^Variable \$recipient might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/main/messages/trusted-messages-ajax.php - - message: '#^Variable \$requested_by might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/messages/trusted-messages-ajax.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/trusted-messages.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/messages/trusted-messages.php - - message: '#^Variable \$tmore might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/onotes/office_comments.php - - message: '#^Variable \$any_search_class might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$dispatcher might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$fileroot might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$openemr_name might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$search_any_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$search_globals_class might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/main/tabs/main.php - - message: '#^Variable \$classes on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/main/tabs/templates/patient_data_template.php - - message: '#^Variable \$classLoader might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/openemr.bootstrap.php - - message: '#^Variable \$eventDispatcher might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/openemr.bootstrap.php - - message: '#^Class OpenEMR\\Modules\\ClaimRevConnector\\CustomSkeletonFHIRResourceService not found\.$#' - identifier: class.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/Bootstrap.php - - message: '#^Access to an undefined property OpenEMR\\Modules\\ClaimRevConnector\\ConnectivityInfo\:\:\$token\.$#' - identifier: property.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/ConnectivityInfo.php - - message: '#^Variable \$revenueTools might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/EligibilityObjectCreator.php - - message: '#^Access to undefined constant OpenEMR\\Modules\\ClaimRevConnector\\GlobalConfig\:\:CONFIG_OPTION_ENCRYPTED\.$#' - identifier: classConstant.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/GlobalConfig.php - - message: '#^Access to undefined constant OpenEMR\\Modules\\ClaimRevConnector\\GlobalConfig\:\:CONFIG_OPTION_TEXT\.$#' - identifier: classConstant.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/src/GlobalConfig.php - - message: '#^Variable \$benefit might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/additional_info.php - - message: '#^Variable \$benefits might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/benefit.php - - message: '#^Variable \$benefit might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/date_information.php - - message: '#^Variable \$eligibilityData might not be defined\.$#' - identifier: variable.undefined - count: 20 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/deductibles.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/eligibility.php - - message: '#^Variable \$benefit might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/identifier_info.php - - message: '#^Variable \$eligibilityData might not be defined\.$#' - identifier: variable.undefined - count: 22 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/medicare_info.php - - message: '#^Variable \$benefit might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/messages.php - - message: '#^Variable \$tab might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/navbar.php - - message: '#^Variable \$benefit might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/procedure_info.php - - message: '#^Variable \$eligibilityData might not be defined\.$#' - identifier: variable.undefined - count: 69 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/quick_info.php - - message: '#^Variable \$receiver might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/receiver.php - - message: '#^Variable \$benefit might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/related_entity.php - - message: '#^Variable \$benefit might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/service_delivery.php - - message: '#^Variable \$source might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/source.php - - message: '#^Variable \$subscriberPatient might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/subscriber_patient.php - - message: '#^Variable \$data might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/validation.php - - message: '#^Variable \$eligibilityData might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-claimrev-connect/templates/validation.php - - message: '#^Variable \$classLoader might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/openemr.bootstrap.php - - message: '#^Variable \$eventDispatcher might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/openemr.bootstrap.php - - message: '#^Variable \$_GET on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/public/index-portal.php - - message: '#^Variable \$_REQUEST on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/public/index.php - - message: '#^Variable \$user might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/src/Controller/TeleHealthVideoRegistrationController.php - - message: '#^Variable \$userSaveRecord might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/src/Services/TeleHealthRemoteRegistrationService.php - - message: '#^Constructor of class Comlink\\OpenEMR\\Modules\\TeleHealthModule\\TelehealthGlobalConfig has an unused parameter \$moduleDirectoryName\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../interface/modules/custom_modules/oe-module-comlink-telehealth/src/TelehealthGlobalConfig.php - - message: '#^Variable \$classLoader might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/openemr.bootstrap.php - - message: '#^Variable \$eventDispatcher might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/openemr.bootstrap.php - - message: '#^Variable \$datas might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/public/lab_setup.php - - message: '#^Variable \$data might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/public/primary_config_edit.php - - message: '#^Variable \$npi might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/public/primary_config_edit.php - - message: '#^Undefined variable\: \$$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/AddressBookAddEdit.php - - message: '#^Class OpenEMR\\Modules\\Dorn\\CustomSkeletonFHIRResourceService not found\.$#' - identifier: class.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/Bootstrap.php - - message: '#^Variable \$D might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-dorn/src/DornGenHl7Order.php - - message: '#^Variable \$segment might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/DornGenHl7Order.php - - message: '#^Variable \$segment might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-dorn/src/GenHl7OrderBase.php - - message: '#^Access to undefined constant OpenEMR\\Modules\\Dorn\\GlobalConfig\:\:CONFIG_OPTION_ENCRYPTED\.$#' - identifier: classConstant.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/GlobalConfig.php - - message: '#^Access to undefined constant OpenEMR\\Modules\\Dorn\\GlobalConfig\:\:CONFIG_OPTION_TEXT\.$#' - identifier: classConstant.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/GlobalConfig.php - - message: '#^Undefined variable\: \$arep$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-dorn/src/ReceiveHl7Results.php - - message: '#^Undefined variable\: \$log$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/ReceiveHl7Results.php - - message: '#^Undefined variable\: \$prpath$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/ReceiveHl7Results.php - - message: '#^Property OpenEMR\\Modules\\Dorn\\models\\OrderStatusViewModel\:\:\$createdDateTimeUtc has unknown class OpenEMR\\Modules\\Dorn\\models\\DateTime as its type\.$#' - identifier: class.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-dorn/src/models/OrderStatusViewModel.php - - message: '#^Variable \$tab might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/modules/custom_modules/oe-module-dorn/templates/navbar.php - - message: '#^Variable \$classLoader might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/openemr.bootstrap.php - - message: '#^Variable \$eventDispatcher might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/openemr.bootstrap.php - - message: '#^Variable \$taskId might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/public/index.php - - message: '#^Variable \$localColumnName in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Models/ExportState.php - - message: '#^Variable \$currentDocumentSize might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php - - message: '#^Variable \$job might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php - - message: '#^Variable \$pidSlice might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php - - message: '#^Variable \$tasks might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-ehi-exporter/src/Services/EhiExporter.php - - message: '#^Variable \$file_mime on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php - - message: '#^Variable \$interface_pid on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php - - message: '#^Variable \$isEmail on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php - - message: '#^Variable \$isFax on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php - - message: '#^Variable \$isSMS on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/contact.php - - message: '#^Variable \$route on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/index.php - - message: '#^Variable \$args on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/library/rc_sms_notification.php - - message: '#^Variable \$cred might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/library/rc_sms_notification.php - - message: '#^Variable \$db_patient on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/library/rc_sms_notification.php - - message: '#^Variable \$selectedService might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/library/setup_services.php - - message: '#^Variable \$vendors on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/library/setup_services.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/library/utility.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-faxsms/library/utility.php - - message: '#^Variable \$tabTitle on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/messageUI.php - - message: '#^Variable \$classLoader might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/openemr.bootstrap.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/setup_rc.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/setup_voice.php - - message: '#^Caught class OpenEMR\\Modules\\FaxSMS\\Controller\\Exception not found\.$#' - identifier: class.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php - - message: '#^Constructor of class OpenEMR\\Modules\\FaxSMS\\Controller\\AppDispatch has an unused parameter \$type\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php - - message: '#^Variable \$route on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php - - message: '#^Variable \$setup in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/AppDispatch.php - - message: '#^Access to an undefined property OpenEMR\\Modules\\FaxSMS\\Controller\\EmailClient\:\:\$appKey\.$#' - identifier: property.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/EmailClient.php - - message: '#^Access to an undefined property OpenEMR\\Modules\\FaxSMS\\Controller\\EmailClient\:\:\$appSecret\.$#' - identifier: property.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/EmailClient.php - - message: '#^Access to an undefined property OpenEMR\\Modules\\FaxSMS\\Controller\\EmailClient\:\:\$sid\.$#' - identifier: property.notFound - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/EmailClient.php - - message: '#^Variable \$content in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/RCFaxClient.php - - message: '#^Variable \$pname might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/RCFaxClient.php - - message: '#^Variable \$response might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/RCFaxClient.php - - message: '#^Variable \$responseMsgs in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Controller/TwilioSMSClient.php - - message: '#^Variable \$tz in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/EtherFax/EtherFaxClient.php - - message: '#^Variable \$data on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Events/NotificationEventListener.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Events/NotificationEventListener.php - - message: '#^Variable \$user on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/modules/custom_modules/oe-module-faxsms/src/Events/NotificationEventListener.php - - message: '#^Variable \$classLoader might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/openemr.bootstrap.php - - message: '#^Variable \$eventDispatcher might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/openemr.bootstrap.php - - message: '#^Variable \$id in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Bootstrap.php - - message: '#^Variable \$is_saved might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/LogImportBuild.php - - message: '#^Variable \$line in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/LogImportBuild.php - - message: '#^Variable \$sub on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/LogImportBuild.php - - message: '#^Variable \$provider_info on left side of \?\?\= always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/ModuleService.php - - message: '#^Variable \$patient_info on left side of \?\?\= always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php - - message: '#^Variable \$provider_info on left side of \?\?\= always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php - - message: '#^Variable \$relation on left side of \?\?\= always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/TransmitProperties.php - - message: '#^Variable \$newKey in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/src/Services/WenoValidate.php - - message: '#^Variable \$backGroundTask on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/templates/download_log_viewer.php - - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/templates/download_log_viewer.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/custom_modules/oe-module-weno/templates/indexrx.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/templates/indexrx.php - - message: '#^Variable \$vendors on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/templates/weno_setup.php - - message: '#^Variable \$usersData might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/custom_modules/oe-module-weno/templates/weno_users.php - - message: '#^Variable \$array_active_modules might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Acl/src/Acl/Controller/AclController.php - - message: '#^Call to an undefined method Application\\Controller\\IndexController\:\:CommonPlugin\(\)\.$#' - identifier: method.notFound - count: 1 - path: ../interface/modules/zend_modules/module/Application/src/Application/Controller/IndexController.php - - message: '#^Call to an undefined method Application\\Controller\\SendtoController\:\:escapeHtml\(\)\.$#' - identifier: method.notFound - count: 2 - path: ../interface/modules/zend_modules/module/Application/src/Application/Controller/SendtoController.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php - - message: '#^Variable \$rowCount might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Application/src/Application/Model/ApplicationTable.php - - message: '#^Variable \$rows might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Application/src/Application/Plugin/CommonPlugin.php - - message: '#^Call to an undefined method Carecoordination\\Controller\\CarecoordinationController\:\:CommonPlugin\(\)\.$#' - identifier: method.notFound - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CarecoordinationController.php - - message: '#^Call to an undefined method Carecoordination\\Controller\\CarecoordinationController\:\:Documents\(\)\.$#' - identifier: method.notFound - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CarecoordinationController.php - - message: '#^Variable \$his_tob_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CarecoordinationController.php - - message: '#^Call to an undefined method Carecoordination\\Controller\\CcdController\:\:updateDocumentCategoryUsingCatname\(\)\.$#' - identifier: method.notFound - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/CcdController.php - - message: '#^Undefined variable\: \$combination$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncounterccdadispatchController.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncounterccdadispatchController.php - - message: '#^Call to an undefined method Carecoordination\\Controller\\EncountermanagerController\:\:CommonPlugin\(\)\.$#' - identifier: method.notFound - count: 5 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncountermanagerController.php - - message: '#^Variable \$combination might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Controller/EncountermanagerController.php - - message: '#^Constructor of class Carecoordination\\Form\\ModuleconfigForm has an unused parameter \$dbAdapter\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Form/ModuleconfigForm.php - - message: '#^Variable \$allergy_begdate_value might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Variable \$documentationOf might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Variable \$o_id might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Variable \$pid_exist on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Variable \$provider_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Variable \$res_cur might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Variable \$value might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CarecoordinationTable.php - - message: '#^Variable \$str might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdaGenerator.php - - message: '#^Variable \$str1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdaGenerator.php - - message: '#^Variable \$sortPreferences on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/CcdaUserPreferencesTransformer.php - - message: '#^Function display_layout_rows_group_new not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$code_type on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$count might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$details in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$encounter in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$encounter_activity on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$encounter_diagnosis might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$formatted_date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$forms might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$getprovider in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$query might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$res_issues on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$row_patient_data might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$searchClause in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$start_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$time in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$tmp on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$trans_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$uuid on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncounterccdadispatchTable.php - - message: '#^Variable \$ccda_file might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php - - message: '#^Variable \$ccda_id might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php - - message: '#^Variable \$formatted_date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php - - message: '#^Variable \$res_cur might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php - - message: '#^Variable \$trans_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/EncountermanagerTable.php - - message: '#^Access to an undefined property Carecoordination\\Model\\ModuleconfigTable\:\:\$applicationTable\.$#' - identifier: property.notFound - count: 1 - path: ../interface/modules/zend_modules/module/Carecoordination/src/Carecoordination/Model/ModuleconfigTable.php - - message: '#^Class Ccr\\Model\\CcrTable constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../interface/modules/zend_modules/module/Ccr/config/module.config.php - - message: '#^Call to an undefined method Ccr\\Controller\\CcrController\:\:CommonPlugin\(\)\.$#' - identifier: method.notFound - count: 2 - path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Controller/CcrController.php - - message: '#^Variable \$active might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Model/CcrTable.php - - message: '#^Variable \$activity might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Ccr/src/Ccr/Model/CcrTable.php - - message: '#^Call to an undefined method Documents\\Controller\\DocumentsController\:\:Documents\(\)\.$#' - identifier: method.notFound - count: 2 - path: ../interface/modules/zend_modules/module/Documents/src/Documents/Controller/DocumentsController.php - - message: '#^Variable \$style might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Documents/src/Documents/Controller/DocumentsController.php - - message: '#^Call to an undefined method Immunization\\Controller\\ImmunizationController\:\:CommonPlugin\(\)\.$#' - identifier: method.notFound - count: 9 - path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Controller/ImmunizationController.php - - message: '#^Variable \$rows might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Controller/ImmunizationController.php - - message: '#^Constructor of class Immunization\\Form\\ImmunizationForm has an unused parameter \$name\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Form/ImmunizationForm.php - - message: '#^Variable \$res_cur might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php - - message: '#^Variable \$val might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Immunization/src/Immunization/Model/ImmunizationTable.php - - message: '#^Variable \$curr_html_tag might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php - - message: '#^Variable \$div on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php - - message: '#^Variable \$status might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php - - message: '#^Variable \$v_major might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php - - message: '#^Variable \$v_minor might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php - - message: '#^Variable \$v_patch might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Controller/InstallerController.php - - message: '#^Variable \$modArr might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTable.php - - message: '#^Variable \$ret_str might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Installer/src/Installer/Model/InstModuleTable.php - - message: '#^Variable \$aclSetupFlag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/PatientFilter/acl/acl_setup.php - - message: '#^Variable \$aclSetupFlag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/PatientFilter/acl/acl_upgrade.php - - message: '#^Variable \$drug_test_count might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/PatientFlowBoard/src/PatientFlowBoard/Listener/PatientFlowBoardEventsSubscriber.php - - message: '#^Variable \$p might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/PrescriptionTemplates/src/PrescriptionTemplates/Controller/PrescriptionTemplatesController.php - - message: '#^Call to an undefined method Syndromicsurveillance\\Controller\\SyndromicsurveillanceController\:\:CommonPlugin\(\)\.$#' - identifier: method.notFound - count: 3 - path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Controller/SyndromicsurveillanceController.php - - message: '#^Variable \$formatted_date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php - - message: '#^Variable \$res_cur might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php - - message: '#^Variable \$text might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/modules/zend_modules/module/Syndromicsurveillance/src/Syndromicsurveillance/Model/SyndromicsurveillanceTable.php - - message: '#^Variable \$BS_COL_CLASS might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/new/new_comprehensive.php - - message: '#^Variable \$date_init might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/new/new_comprehensive.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/new/new_comprehensive.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/new/new_comprehensive_save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/new/new_comprehensive_save.php - - message: '#^Variable \$alertmsg might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/new/new_patient_save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/new/new_patient_save.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/new/new_patient_save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/new/new_patient_save.php - - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/new/new_search_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/new/new_search_popup.php - - message: '#^Variable \$codes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/find_order_popup.php - - message: '#^Variable \$proctype_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/find_order_popup.php - - message: '#^Variable \$ptrow might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/orders/find_order_popup.php - - message: '#^Variable \$sub might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/find_order_popup.php - - message: '#^Variable \$testid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/find_order_popup.php - - message: '#^Variable \$transport might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/find_order_popup.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/find_order_popup.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/gen_hl7_order.inc.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/orders/list_reports.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/list_reports.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/orders/list_reports.php - - message: '#^Variable \$ptid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/orders/load_compendium.php - - message: '#^Variable \$insco in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/orders/order_manifest.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/orders/order_manifest.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/orders/orders_results.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/orders/orders_results.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/orders/patient_match_dialog.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/orders/pending_orders.php - - message: '#^Variable \$optionsStr on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/orders/procedure_provider_edit.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/procedure_provider_edit.php - - message: '#^Variable \$help_icon might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/procedure_provider_list.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/procedure_provider_list.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/procedure_stats.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/procedure_stats.php - - message: '#^Instantiated class QuestResultClient not found\.$#' - identifier: class.notFound - count: 1 - path: ../interface/orders/receive_hl7_results.inc.php - - message: '#^Undefined variable\: \$arep$#' - identifier: variable.undefined - count: 2 - path: ../interface/orders/receive_hl7_results.inc.php - - message: '#^Undefined variable\: \$patient_id$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/single_order_results.inc.php - - message: '#^Variable \$aNotes in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/orders/single_order_results.inc.php - - message: '#^Function cms_portal_call not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/orders/single_order_results.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/orders/single_order_results.php - - message: '#^Variable \$help_icon might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/types.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/types.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/types_edit.php - - message: '#^Variable \$title might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/orders/types_edit.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/addr_label.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/barcode_label.php - - message: '#^Variable \$type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/barcode_label.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/download_template.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/download_template.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/download_template.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/education.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/education.php - - message: '#^Variable \$counter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/cash_receipt.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/cash_receipt.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/encounter/cash_receipt.php - - message: '#^Variable \$raw_encounter_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/cash_receipt.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/encounter/cash_receipt.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/coding.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/coding.php - - message: '#^Variable \$all might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/copay.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/copay.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/delete_form.php - - message: '#^Variable \$incdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/delete_form.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/delete_form.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/delete_form.php - - message: '#^Variable \$counter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/patient_file/encounter/diagnosis.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/patient_file/encounter/diagnosis.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis.php - - message: '#^Variable \$tback might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis.php - - message: '#^Variable \$tmore might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/diagnosis.php - - message: '#^Variable \$code might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$counter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$tback might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$text might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/diagnosis_full.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/encounter_bottom.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/encounter_top.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/encounter_top.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/encounter_top.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_dynamic.php - - message: '#^Variable \$code_external_tables might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$codetype might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$fe_array might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$from might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$include_inactive might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$sellist might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$source might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$where1 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/find_code_dynamic_ajax.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/find_code_history.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/find_code_popup.php - - message: '#^Variable \$attendant_type might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 23 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$groupId might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 19 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$therapy_group might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/forms.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/search_code.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/search_code.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/search_code.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/select_codes.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_codes.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/superbill_codes.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/superbill_codes.php - - message: '#^Variable \$tback might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_codes.php - - message: '#^Variable \$tmore might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_codes.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/encounter/superbill_codes.php - - message: '#^Variable \$code might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$code_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$code_type_name_external might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$filter_key might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$modifier might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$res might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$taxrates might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/encounter/superbill_custom_full.php - - message: '#^Variable \$incdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/encounter/trend_form.php - - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$cryptoGen might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$form_pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$payment_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$session_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/front_payment.php - - message: '#^Variable \$ccaudit might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/front_payment_cc.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/front_payment_cc.php - - message: '#^Variable \$response might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/front_payment_cc.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/history/encounters.php - - message: '#^Variable \$attendant_type might not be defined\.$#' - identifier: variable.undefined - count: 13 - path: ../interface/patient_file/history/encounters.php - - message: '#^Variable \$dres might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/history/encounters.php - - message: '#^Variable \$encounter_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/history/encounters.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 22 - path: ../interface/patient_file/history/encounters.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/history/encounters.php - - message: '#^Variable \$therapy_group might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/history/encounters.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/history/encounters_ajax.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/history/history.php - - message: '#^Variable \$list_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/history/history.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/history/history.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/history/history.php - - message: '#^Variable \$date_init might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/history/history_full.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/history/history_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/history/history_full.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/history/history_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/history/history_save.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/history/history_save.php - - message: '#^Variable \$last might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/label.php - - message: '#^Variable \$pdf might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/label.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/label.php - - message: '#^Variable \$bodytext might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/patient_file/letter.php - - message: '#^Variable \$from_title on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/patient_file/letter.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/letter.php - - message: '#^Variable \$to_title on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/patient_file/letter.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/manage_dup_patients.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/merge_patients.php - - message: '#^Variable \$source on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/patient_file/merge_patients.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/merge_patients.php - - message: '#^Variable \$tables might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/merge_patients.php - - message: '#^Variable \$target on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/patient_file/merge_patients.php - - message: '#^Function generateCheckoutReceipt not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 2 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$contraception_billing_code might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$form_num_amount_columns might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$form_num_method_columns might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$form_num_ref_columns might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$form_num_type_columns might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$num_optional_columns might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$thisdate might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/pos_checkout_ippf.php - - message: '#^Variable \$amount might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/pos_checkout_normal.php - - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/patient_file/pos_checkout_normal.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/pos_checkout_normal.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/pos_checkout_normal.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/pos_checkout_normal.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$pages might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$patdata might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/printed_fee_sheet.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/problem_encounter.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/problem_encounter.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/problem_encounter.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/reminder/active_reminder_popup.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/reminder/active_reminder_popup.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/reminder/clinical_reminders.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/reminder/clinical_reminders.php - - message: '#^Variable \$rules_default might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/reminder/patient_reminders.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/reminder/patient_reminders.php - - message: '#^Caught class MpdfException not found\.$#' - identifier: class.notFound - count: 2 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Function cms_portal_call not found\.$#' - identifier: function.notFound - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$from_file_tmp_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$insurance_data_array might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 23 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$prevIssueType might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$tback might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$tmp_files_remove might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/custom_report.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/patient_report.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/report/patient_report.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/patient_file/report/patient_report.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/report/patient_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/report/patient_report.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/rules/patient_data.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/rules/patient_data.php - - message: '#^Variable \$amendment_desc might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/add_edit_amendments.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/add_edit_amendments.php - - message: '#^Variable \$resultSet might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/add_edit_amendments.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/add_edit_amendments.php - - message: '#^Variable \$ISSUE_CLASSIFICATIONS might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/add_edit_issue.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/add_edit_issue.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/add_edit_issue.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/add_edit_issue.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/add_edit_issue.php - - message: '#^Variable \$form_adreviewed might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/advancedirectives.php - - message: '#^Variable \$form_completedad might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/advancedirectives.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/advancedirectives.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/advancedirectives.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/browse.php - - message: '#^Variable \$tback might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/browse.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/clinical_reminders_fragment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/clinical_reminders_fragment.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/patient_file/summary/create_portallogin.php - - message: '#^Variable \$oemr_ui might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/dashboard_header.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/dashboard_header.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/dashboard_header.php - - message: '#^Variable \$expand_icon_class might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/dashboard_header_simple_return.php - - message: '#^Variable \$expand_title might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/dashboard_header_simple_return.php - - message: '#^Variable \$expandable might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/dashboard_header_simple_return.php - - message: '#^Variable \$go_back_href might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/dashboard_header_simple_return.php - - message: '#^Variable \$header_title might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/dashboard_header_simple_return.php - - message: '#^Variable \$help_icon might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/dashboard_header_simple_return.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/dashboard_header_simple_return.php - - message: '#^Class OpenEMR\\Menu\\PatientMenuRole constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Class OpenEMR\\Patient\\Cards\\PortalCard constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$apptStyle2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$appts might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$bgColor might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$extraApptDate might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$firstApptIndx might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$num_of_days might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$past_appts might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$query might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$resNotNull might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$therapyGroupCategories might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$vitals_form_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/demographics.php - - message: '#^Variable \$condition_str might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics_full.php - - message: '#^Variable \$date_init might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics_full.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/patient_file/summary/demographics_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/demographics_print.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/demographics_print.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics_print.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/demographics_print.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/demographics_save.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/disc_fragment.php - - message: '#^Variable \$active might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/disclosure_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/summary/disclosure_full.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/disclosure_full.php - - message: '#^Variable \$administered_by might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$code might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$code_text might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$code_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$immunization_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$imo_criteria_value might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$observation_criteria might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$observation_criteria_value might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$vis_presented_dateval might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$vis_published_dateval might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/immunizations.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/insurance_edit.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/summary/insurance_edit.php - - message: '#^Variable \$date_collected might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/labdata.php - - message: '#^Variable \$nothing might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/labdata.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/summary/labdata.php - - message: '#^Variable \$result_code might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/labdata.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/labdata.php - - message: '#^Variable \$the_item might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/labdata.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/labdata.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/labdata_fragment.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/lbf_fragment.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/list_amendments.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/list_amendments.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/patient_reminders_fragment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/patient_reminders_fragment.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/pnotes.php - - message: '#^Variable \$tmore might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/pnotes_fragment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/pnotes_fragment.php - - message: '#^Variable \$notes_sent_count might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_full.php - - message: '#^Variable \$result_count might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_full.php - - message: '#^Variable \$result_sent_count might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_full.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_full_add.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/summary/pnotes_full_add.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_full_add.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/pnotes_print.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/summary/pnotes_print.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/print_amendments.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/print_amendments.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/record_disclosure.php - - message: '#^Undefined variable\: \$title$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/shot_record.php - - message: '#^Variable \$data might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/shot_record.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/shot_record.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/shot_record.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/stats.php - - message: '#^Variable \$kernel might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/stats.php - - message: '#^Variable \$need_head might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/stats.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../interface/patient_file/summary/stats.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/stats.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/stats_full.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/summary/stats_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../interface/patient_file/summary/stats_full.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/track_anything_fragment.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/summary/vitals_fragment.php - - message: '#^Variable \$date_init might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/transaction/add_transaction.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/transaction/add_transaction.php - - message: '#^Variable \$newid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/transaction/add_transaction.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 13 - path: ../interface/patient_file/transaction/add_transaction.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_file/transaction/add_transaction.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/transaction/add_transaction.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_file/transaction/print_referral.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/transaction/print_referral.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/transaction/print_referral.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/transaction/record_request.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/transaction/transactions.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/transaction/transactions.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_file/transaction/transactions.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_file/void_dialog.php - - message: '#^Variable \$MedEx might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$count_facs might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$count_provs might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$current_events might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$from_date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$from_date on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$icon2_here might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$icon_4_CALL might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$icon_extra might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$icon_here might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$icons might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$local might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$ptkr_future_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$reason_visit might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$select_facs might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$select_provs might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$statuses_list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$to_date on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/patient_tracker/patient_tracker.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/patient_tracker/patient_tracker_status.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/procedure_tools/ereqs/ereq_universal_form.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/procedure_tools/ereqs/ereq_universal_form.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/procedure_tools/gen_universal_hl7/gen_hl7_order.inc.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/procedure_tools/labcorp/ereq_form.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/procedure_tools/labcorp/ereq_form.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/procedure_tools/labcorp/gen_hl7_order.inc.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/procedure_tools/quest/gen_hl7_order.inc.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/amc_full_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/amc_tracking.php - - message: '#^Variable \$rems_out might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/appointments_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/appointments_report.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/appt_encounter_report.php - - message: '#^Variable \$res might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/appt_encounter_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/appt_encounter_report.php - - message: '#^Variable \$checkSumNewApi might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/audit_log_tamper_report.php - - message: '#^Variable \$getevent might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/audit_log_tamper_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/cdr_log.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/chart_location_activity.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/chart_location_activity.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/charts_checked_out.php - - message: '#^Variable \$mh_stmt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/clinical_reports.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/clinical_reports.php - - message: '#^Variable \$agecolno might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/collections_report.php - - message: '#^Variable \$ins_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/collections_report.php - - message: '#^Variable \$insposition might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/collections_report.php - - message: '#^Variable \$invlines might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/collections_report.php - - message: '#^Variable \$provider_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/collections_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/collections_report.php - - message: '#^Variable \$report_id on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/reports/cqm.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/cqm.php - - message: '#^Variable \$EXPORT_INC might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$RadioSeperator might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaDataTypeMaster might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaDisplayMaster might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaDisplayRadioMaster might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaIncludeMaster might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaKeyMaster might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaQueryDropDownMaster might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaQueryDropDownMasterDefault might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaQueryDropDownMasterDefaultKey might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TPSCriteriaRadioKeyMaster might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$TextSeperator might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$daysheet might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$daysheet_total might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$provider_run might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/criteria.tab.php - - message: '#^Variable \$insurance_data_array might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/custom_report_range.php - - message: '#^Variable \$patient_data_array might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/custom_report_range.php - - message: '#^Variable \$pids might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../interface/reports/custom_report_range.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/custom_report_range.php - - message: '#^Variable \$selectedFacility in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/reports/daily_summary_report.php - - message: '#^Variable \$selectedProvider in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/reports/daily_summary_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/daily_summary_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/destroyed_drugs_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/encounters_report.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/external_data.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/external_data.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/external_data.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/front_receipts_report.php - - message: '#^Variable \$total1_by_method might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/front_receipts_report.php - - message: '#^Variable \$total2_by_method might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/front_receipts_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/immunization_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/inventory_activity.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/inventory_list.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/inventory_list.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/inventory_transactions.php - - message: '#^Variable \$productleft might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/ippf_cyp_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/ippf_cyp_report.php - - message: '#^Variable \$report_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/ippf_daily.php - - message: '#^Variable \$arr_report in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/reports/ippf_statistics.php - - message: '#^Variable \$form_report might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/ippf_statistics.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/message_list.php - - message: '#^Variable \$openemr_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/non_reported.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/non_reported.php - - message: '#^Variable \$effectiveInsurances might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/pat_ledger.php - - message: '#^Variable \$include_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/pat_ledger.php - - message: '#^Variable \$last_year might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/pat_ledger.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/pat_ledger.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/patient_flow_board_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/patient_list.php - - message: '#^Variable \$observation_description in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/reports/patient_list_creation.php - - message: '#^Variable \$odrstmt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/patient_list_creation.php - - message: '#^Variable \$prescription_drug in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/reports/patient_list_creation.php - - message: '#^Variable \$procedure_diagnosis in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/reports/patient_list_creation.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/patient_list_creation.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/prescriptions_report.php - - message: '#^Undefined variable\: \$invnumber$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/receipts_by_method_report.php - - message: '#^Variable \$b in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 2 - path: ../interface/reports/receipts_by_method_report.php - - message: '#^Variable \$key in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../interface/reports/receipts_by_method_report.php - - message: '#^Variable \$rowmethod might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/receipts_by_method_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/receipts_by_method_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/referrals_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/report_results.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/reports/sales_by_item.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/services_by_category.php - - message: '#^Variable \$key might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/services_by_category.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/reports/svc_code_financial_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/reports/unique_seen_patients_report.php - - message: '#^Variable \$logocode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/smart/register-app.php - - message: '#^Variable \$tinylogocode1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/smart/register-app.php - - message: '#^Variable \$tinylogocode2 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/smart/register-app.php - - message: '#^Variable \$GLOBALS_METADATA might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/super/edit_globals.php - - message: '#^Variable \$USER_SPECIFIC_GLOBALS might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/super/edit_globals.php - - message: '#^Variable \$USER_SPECIFIC_TABS might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/super/edit_globals.php - - message: '#^Variable \$globalTitle might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/super/edit_globals.php - - message: '#^Variable \$globalValue might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../interface/super/edit_globals.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/super/edit_globals.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_globals.php - - message: '#^Variable \$datatypes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_layout.php - - message: '#^Variable \$sources might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_layout.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_layout.php - - message: '#^Variable \$typesUsingList might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_layout.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_layout_props.php - - message: '#^Variable \$code might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/super/edit_list.php - - message: '#^Variable \$id in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/super/edit_list.php - - message: '#^Variable \$id in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../interface/super/edit_list.php - - message: '#^Variable \$modifier on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/super/edit_list.php - - message: '#^Variable \$ok_map_cvx_codes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_list.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/super/edit_list.php - - message: '#^Variable \$total_rows might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/edit_list.php - - message: '#^Variable \$code_types might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/super/layout_service_codes.php - - message: '#^Variable \$eres might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/layout_service_codes.php - - message: '#^Variable \$tmp might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/layout_service_codes.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/manage_document_templates.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/manage_site_files.php - - message: '#^Variable \$resp in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../interface/super/manage_site_files.php - - message: '#^Variable \$fldname might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/templates/field_html_display_section.php - - message: '#^Variable \$userMode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/super/templates/field_multi_sorted_list_selector.php - - message: '#^Variable \$therapy_group might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/index.php - - message: '#^Access to an undefined property ParticipantsController\:\:\$groupEventsModel\.$#' - identifier: property.notFound - count: 2 - path: ../interface/therapy_groups/therapy_groups_controllers/participants_controller.php - - message: '#^Access to an undefined property ParticipantsController\:\:\$groupModel\.$#' - identifier: property.notFound - count: 2 - path: ../interface/therapy_groups/therapy_groups_controllers/participants_controller.php - - message: '#^Access to an undefined property ParticipantsController\:\:\$groupParticipantsModel\.$#' - identifier: property.notFound - count: 6 - path: ../interface/therapy_groups/therapy_groups_controllers/participants_controller.php - - message: '#^Access to an undefined property TherapyGroupsController\:\:\$counselorsModel\.$#' - identifier: property.notFound - count: 4 - path: ../interface/therapy_groups/therapy_groups_controllers/therapy_groups_controller.php - - message: '#^Variable \$encounters might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_models/therapy_groups_encounters_model.php - - message: '#^Variable \$providers might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/therapy_groups/therapy_groups_models/users_model.php - - message: '#^Variable \$groupData might not be defined\.$#' - identifier: variable.undefined - count: 15 - path: ../interface/therapy_groups/therapy_groups_views/addGroup.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/therapy_groups/therapy_groups_views/addGroup.php - - message: '#^Variable \$savingStatus might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../interface/therapy_groups/therapy_groups_views/addGroup.php - - message: '#^Variable \$statuses might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/addGroup.php - - message: '#^Variable \$users might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/addGroup.php - - message: '#^Variable \$events might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/appointmentComponent.php - - message: '#^Variable \$groupData might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/therapy_groups/therapy_groups_views/appointmentComponent.php - - message: '#^Variable \$groupId might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/therapy_groups/therapy_groups_views/appointmentComponent.php - - message: '#^Variable \$groupData might not be defined\.$#' - identifier: variable.undefined - count: 26 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php - - message: '#^Variable \$groupId might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php - - message: '#^Variable \$readonly might not be defined\.$#' - identifier: variable.undefined - count: 13 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php - - message: '#^Variable \$savingStatus might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php - - message: '#^Variable \$statuses might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php - - message: '#^Variable \$users might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsGeneralData.php - - message: '#^Variable \$addStatus might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$groupId might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$groupName might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$group_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$participant_data might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$participants might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$readonly might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$statuses might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/groupDetailsParticipants.php - - message: '#^Variable \$counselors might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/listGroups.php - - message: '#^Variable \$deletion_response might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/therapy_groups/therapy_groups_views/listGroups.php - - message: '#^Variable \$deletion_try might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/listGroups.php - - message: '#^Variable \$group_types might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/listGroups.php - - message: '#^Variable \$statuses might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/therapy_groups/therapy_groups_views/listGroups.php - - message: '#^Variable \$therapyGroups might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/therapy_groups/therapy_groups_views/listGroups.php - - message: '#^Variable \$row might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/addrbook_edit.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/addrbook_edit.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/addrbook_list.php - - message: '#^Variable \$result2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/facilities.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/facilities_add.php - - message: '#^Variable \$my_fid on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../interface/usergroup/facility_admin.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/facility_admin.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/facility_user.php - - message: '#^Variable \$date_init might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/facility_user_admin.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/facility_user_admin.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/mfa_registrations.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/mfa_totp.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/mfa_u2f.php - - message: '#^Variable \$email might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/ssl_certificates_admin.php - - message: '#^Variable \$user might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/ssl_certificates_admin.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/user_admin.php - - message: '#^Variable \$selected_user_is_superuser might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../interface/usergroup/user_admin.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/user_admin.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/user_info.php - - message: '#^Variable \$webroot might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/user_info.php - - message: '#^Variable \$SMTP_HOST might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$current_date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$grace_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$grouplist might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$pwd_expires might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$result4 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$result5 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$success might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$un might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin.php - - message: '#^Variable \$grouplist might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/usergroup_admin_add.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/usergroup_admin_add.php - - message: '#^Variable \$result3 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin_add.php - - message: '#^Variable \$result5 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/usergroup/usergroup_admin_add.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../interface/usergroup/usergroup_admin_add.php - - message: '#^Variable \$dbase might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../ippf_upgrade.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/ESign/views/default/esign_signature_log.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/ESign/views/encounter/esign_button.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../library/ESign/views/encounter/esign_form.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/ESign/views/form/esign_button.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../library/ESign/views/form/esign_form.php - - message: '#^Function acl_check not found\.$#' - identifier: function.notFound - count: 1 - path: ../library/FeeSheet.class.php - - message: '#^Function updateInvoiceRefNumber not found\.$#' - identifier: function.notFound - count: 1 - path: ../library/FeeSheet.class.php - - message: '#^Variable \$autojustify might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/FeeSheet.class.php - - message: '#^Access to an undefined property MedExApi\\Display\:\:\$lastError\.$#' - identifier: property.notFound - count: 4 - path: ../library/MedEx/API.php - - message: '#^Access to an undefined property MedExApi\\Events\:\:\$lastError\.$#' - identifier: property.notFound - count: 2 - path: ../library/MedEx/API.php - - message: '#^Access to an undefined property MedExApi\\Practice\:\:\$lastError\.$#' - identifier: property.notFound - count: 1 - path: ../library/MedEx/API.php - - message: '#^Access to an undefined property MedExApi\\Setup\:\:\$lastError\.$#' - identifier: property.notFound - count: 1 - path: ../library/MedEx/API.php - - message: '#^Call to static method NWeekdayOfMonth\(\) on an unknown class MedExApi\\Date_Calc\.$#' - identifier: class.notFound - count: 1 - path: ../library/MedEx/API.php - - message: '#^Instantiated class MedExApi\\DateTime not found\.$#' - identifier: class.notFound - count: 2 - path: ../library/MedEx/API.php - - message: '#^Undefined variable\: \$form_patient_id$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Undefined variable\: \$form_patient_name$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Undefined variable\: \$prog$#' - identifier: variable.undefined - count: 3 - path: ../library/MedEx/API.php - - message: '#^Undefined variable\: \$setting_selectors$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Undefined variable\: \$userid$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$deletes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$events on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$expired might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$facility might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/MedEx/API.php - - message: '#^Variable \$form_patient_id in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$form_patient_name in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$icon might not be defined\.$#' - identifier: variable.undefined - count: 13 - path: ../library/MedEx/API.php - - message: '#^Variable \$last_col_width might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$no_fu might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$no_interval might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$pid_list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$provider might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/MedEx/API.php - - message: '#^Variable \$ptkr_future_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$result2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$setting_selectors in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$tell_MedEx might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/API.php - - message: '#^Variable \$today might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/MedEx/API.php - - message: '#^Variable \$MedEx might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/MedEx/MedEx.php - - message: '#^Variable \$result4 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/adminacl_ajax.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/adminacl_ajax.php - - message: '#^Undefined variable\: \$default$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/code_attributes_ajax.php - - message: '#^Variable \$fileroot might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/ajax/code_attributes_ajax.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/ajax/dated_reminders_counter.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/ajax/easipro_util.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/facility_ajax_code.php - - message: '#^Variable \$name_alt might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../library/ajax/graphs.php - - message: '#^Variable \$titleGraphLine1 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/graphs.php - - message: '#^Variable \$titleGraphLine2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/graphs.php - - message: '#^Instantiated class TwigContainer not found\.$#' - identifier: class.notFound - count: 1 - path: ../library/ajax/immunization_export.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/messages/validate_messages_document_ajax.php - - message: '#^Variable \$twig in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../library/ajax/messages/validate_messages_document_ajax.php - - message: '#^Undefined variable\: \$bgcolor$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/payment_ajax.php - - message: '#^Variable \$StringToAppend might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/ajax/payment_ajax.php - - message: '#^Variable \$StringToAppend2 might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/ajax/payment_ajax.php - - message: '#^Variable \$bgcolor on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/ajax/payment_ajax.php - - message: '#^Variable \$patient_code might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../library/ajax/payment_ajax.php - - message: '#^Variable \$patient_code_complete might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/payment_ajax.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/set_pt.php - - message: '#^Variable \$isPortal on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/ajax/upload.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/ajax/upload.php - - message: '#^Variable \$rtn might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/ajax/upload.php - - message: '#^Undefined variable\: \$provider$#' - identifier: variable.undefined - count: 1 - path: ../library/amc.php - - message: '#^Variable \$provider in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../library/amc.php - - message: '#^Undefined variable\: \$pid$#' - identifier: variable.undefined - count: 2 - path: ../library/api.inc.php - - message: '#^Variable \$res in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../library/appointments.inc.php - - message: '#^Access to undefined constant procedure\:\:DIALYSIS_SERVICE\.$#' - identifier: classConstant.notFound - count: 1 - path: ../library/classes/ClinicalTypes/codes.php - - message: '#^Access to undefined constant procedure\:\:INFLU_VACCINE\.$#' - identifier: classConstant.notFound - count: 1 - path: ../library/classes/ClinicalTypes/codes.php - - message: '#^Access to undefined constant procedure\:\:PNEUMOCOCCAL_VACCINE\.$#' - identifier: classConstant.notFound - count: 1 - path: ../library/classes/ClinicalTypes/codes.php - - message: '#^Class procedure referenced with incorrect case\: Procedure\.$#' - identifier: class.nameCase - count: 3 - path: ../library/classes/ClinicalTypes/codes.php - - message: '#^Variable \$inline_arg might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/Controller.class.php - - message: '#^Access to an undefined property CouchDB\:\:\$body\.$#' - identifier: property.notFound - count: 1 - path: ../library/classes/CouchDB.class.php - - message: '#^Access to an undefined property CouchDB\:\:\$dbase\.$#' - identifier: property.notFound - count: 6 - path: ../library/classes/CouchDB.class.php - - message: '#^Access to an undefined property CouchDB\:\:\$headers\.$#' - identifier: property.notFound - count: 1 - path: ../library/classes/CouchDB.class.php - - message: '#^Access to an undefined property CouchDB\:\:\$host\.$#' - identifier: property.notFound - count: 6 - path: ../library/classes/CouchDB.class.php - - message: '#^Access to an undefined property CouchDB\:\:\$pass\.$#' - identifier: property.notFound - count: 2 - path: ../library/classes/CouchDB.class.php - - message: '#^Access to an undefined property CouchDB\:\:\$port\.$#' - identifier: property.notFound - count: 5 - path: ../library/classes/CouchDB.class.php - - message: '#^Access to an undefined property CouchDB\:\:\$user\.$#' - identifier: property.notFound - count: 2 - path: ../library/classes/CouchDB.class.php - - message: '#^Variable \$thumbnail_data might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/classes/Document.class.php - - message: '#^Constructor of class InsuranceCompany has an unused parameter \$prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../library/classes/InsuranceCompany.class.php - - message: '#^Constructor of class InsuranceNumbers has an unused parameter \$prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../library/classes/InsuranceNumbers.class.php - - message: '#^Function NumberToText not found\.$#' - identifier: function.notFound - count: 1 - path: ../library/classes/NumberToText.class.php - - message: '#^Undefined variable\: \$string$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/OFX.class.php - - message: '#^Constructor of class Person has an unused parameter \$prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../library/classes/Person.class.php - - message: '#^Constructor of class Pharmacy has an unused parameter \$prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../library/classes/Pharmacy.class.php - - message: '#^Variable \$arr might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/Prescription.class.php - - message: '#^Variable \$string might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/Prescription.class.php - - message: '#^Constructor of class Provider has an unused parameter \$prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../library/classes/Provider.class.php - - message: '#^Call to an undefined method HTML_TreeMenu_Presentation\:\:toHTML\(\)\.$#' - identifier: method.notFound - count: 1 - path: ../library/classes/TreeMenu.php - - message: '#^Constructor of class X12Partner has an unused parameter \$prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../library/classes/X12Partner.class.php - - message: '#^Variable \$b2 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/classes/fpdf/fpdf.php - - message: '#^Variable \$cmapkey might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/classes/fpdf/fpdf.php - - message: '#^Variable \$ls might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/fpdf/fpdf.php - - message: '#^Variable \$ret might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/classes/postmaster.php - - message: '#^Variable \$sql might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/rulesets/Amc/library/AbstractAmcReport.php - - message: '#^Access to an undefined property smtp_class\:\:\$pending_sender\.$#' - identifier: property.notFound - count: 2 - path: ../library/classes/smtp/smtp.php - - message: '#^Constant SASL_PLAIN_EXIM_DOCUMENTATION_MODE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../library/classes/smtp/smtp.php - - message: '#^Constant SASL_PLAIN_EXIM_MODE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../library/classes/smtp/smtp.php - - message: '#^Access to an undefined property Thumbnail\:\:\$max_size\.$#' - identifier: property.notFound - count: 4 - path: ../library/classes/thumbnail/Thumbnail.class.php - - message: '#^Variable \$new_file might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/thumbnail/ThumbnailGenerator.php - - message: '#^Variable \$types_support might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/classes/thumbnail/ThumbnailGenerator.php - - message: '#^Variable \$excluded might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/clinical_rules.php - - message: '#^Variable \$new_conflicts in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/clinical_rules.php - - message: '#^Variable \$pass_filter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/clinical_rules.php - - message: '#^Variable \$patientNumber might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/clinical_rules.php - - message: '#^Variable \$percentage might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/clinical_rules.php - - message: '#^Variable \$temp_track_pass might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/clinical_rules.php - - message: '#^Variable \$contraception_billing_code in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/contraception_billing_scan.inc.php - - message: '#^Variable \$contraception_billing_prov in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/contraception_billing_scan.inc.php - - message: '#^Variable \$end might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/csv_like_join.php - - message: '#^Variable \$st might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/custom_template/add_custombutton.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/custom_template/custom_template.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/custom_template/custom_template.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/custom_template/custom_template.php - - message: '#^Variable \$filter_context on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../library/custom_template/personalize.php - - message: '#^Variable \$sel might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/custom_template/share_template.php - - message: '#^Variable \$sendDMTo on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/dated_reminder_functions.php - - message: '#^Variable \$dn might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/deletedrug.php - - message: '#^Variable \$web_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/dicom_frame.php - - message: '#^Variable \$body_text on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../library/direct_message_check.inc.php - - message: '#^Variable \$help_icon_title might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/display_help_icon_inc.php - - message: '#^Undefined variable\: \$ebo7$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_271_html.php - - message: '#^Variable \$cls might not be defined\.$#' - identifier: variable.undefined - count: 26 - path: ../library/edihistory/edih_271_html.php - - message: '#^Variable \$dmg03 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_271_html.php - - message: '#^Variable \$loopid might not be defined\.$#' - identifier: variable.undefined - count: 57 - path: ../library/edihistory/edih_271_html.php - - message: '#^Variable \$bht might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_277_html.php - - message: '#^Variable \$cls might not be defined\.$#' - identifier: variable.undefined - count: 42 - path: ../library/edihistory/edih_277_html.php - - message: '#^Variable \$loopid might not be defined\.$#' - identifier: variable.undefined - count: 33 - path: ../library/edihistory/edih_277_html.php - - message: '#^Variable \$qtystr might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/edihistory/edih_277_html.php - - message: '#^Variable \$sc204 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_277_html.php - - message: '#^Variable \$sc304 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_277_html.php - - message: '#^Undefined variable\: \$dtp03$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_278_html.php - - message: '#^Variable \$ar01 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_278_html.php - - message: '#^Variable \$dep_eb_html might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_278_html.php - - message: '#^Variable \$elem03 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_278_html.php - - message: '#^Variable \$elem05 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_278_html.php - - message: '#^Variable \$loopid might not be defined\.$#' - identifier: variable.undefined - count: 68 - path: ../library/edihistory/edih_278_html.php - - message: '#^Variable \$sbr_eb_html might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_278_html.php - - message: '#^Undefined variable\: \$cur03$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Undefined variable\: \$cur04$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Undefined variable\: \$n405$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$ca might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$cd might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$cls might not be defined\.$#' - identifier: variable.undefined - count: 34 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$cq might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$cr might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$loopid might not be defined\.$#' - identifier: variable.undefined - count: 38 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$plb_amt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$plb_rc might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$plb_rt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$plb_tr might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$svcfee might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$svcpmt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_835_html.php - - message: '#^Variable \$ackcode might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$acknote might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$fg_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$fg_type might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$sub_icn might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$subdate might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$substn might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$subtime might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_997_error.php - - message: '#^Variable \$subtype might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_997_error.php - - message: '#^Undefined variable\: \$file_type$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Undefined variable\: \$frow$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_archive.php - - message: '#^Undefined variable\: \$msg$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$arch_fn might not be defined\.$#' - identifier: variable.undefined - count: 12 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$archive_dir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$car2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$car_cmb_unique might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$h might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$h_ar might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$isrn might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$params might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$tmp_dir might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../library/edihistory/edih_archive.php - - message: '#^Variable \$type_ar might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_archive.php - - message: '#^Undefined variable\: \$tp$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_data.php - - message: '#^Variable \$dtpd2 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_data.php - - message: '#^Variable \$dtpdlbl might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_data.php - - message: '#^Variable \$errct might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_data.php - - message: '#^Variable \$fn might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_csv_data.php - - message: '#^Variable \$trc might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_csv_data.php - - message: '#^Undefined variable\: \$file_type$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_inc.php - - message: '#^Variable \$enc might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_inc.php - - message: '#^Variable \$pe might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_inc.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_inc.php - - message: '#^Variable \$rws might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_inc.php - - message: '#^Undefined variable\: \$rtp$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$bht03syn might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$bnfteq might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$cdx might not be defined\.$#' - identifier: variable.undefined - count: 39 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$err_seg might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$ft might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$gsdate might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$have_pt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$hl might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$isrsp might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$payer_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$payer_name might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$ptname might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$rej_ct might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$rqst might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$rspdate might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$rspsttype might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$rsptype might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$sar might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$svcdate might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_csv_parse.php - - message: '#^Variable \$_FILES in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../library/edihistory/edih_io.php - - message: '#^Variable \$_GET in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../library/edihistory/edih_io.php - - message: '#^Variable \$qs might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_io.php - - message: '#^Variable \$str_html might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_io.php - - message: '#^Variable \$has_eb might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_segments.php - - message: '#^Variable \$has_iii might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_segments.php - - message: '#^Variable \$rspfile might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_segments.php - - message: '#^Variable \$rspicn might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_segments.php - - message: '#^Variable \$stn might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/edih_segments.php - - message: '#^Undefined variable\: \$err$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_uploads.php - - message: '#^Undefined variable\: \$segment_ar$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Undefined variable\: \$st_pos$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$bht_pos might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$dr might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$ds might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$dt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$env_ar might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$gs_ct might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$gs_fid might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$gs_start might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$gsn might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$icn might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$seg_ar might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$segidx might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$stn might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Variable \$ta1_icn in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../library/edihistory/edih_x12file_class.php - - message: '#^Undefined variable\: \$de$#' - identifier: variable.undefined - count: 18 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Undefined variable\: \$delimiter3$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Undefined variable\: \$ds$#' - identifier: variable.undefined - count: 4 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$bpr02 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$check_amount might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$check_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$chk might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$ck might not be defined\.$#' - identifier: variable.undefined - count: 52 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$de might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$gs_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$i might not be defined\.$#' - identifier: variable.undefined - count: 27 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$loop might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$loopid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$lx01 might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$out might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$plbar might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$pmt_html might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$seg might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Variable \$segid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_835_accounting.php - - message: '#^Constant NET_SFTP_LOCAL_FILE not found\.$#' - identifier: constant.notFound - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Constant NET_SFTP_TYPE_REGULAR not found\.$#' - identifier: constant.notFound - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Function edih_sftp_connect not found\.$#' - identifier: function.notFound - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Undefined variable\: \$f_ct$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Undefined variable\: \$uplkey$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$actn might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$dir_to might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$fdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$host might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$ldir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$p_ct might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$pass might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$pdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$port might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$sftp_hosts might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$site in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../library/edihistory/test_edih_sftp_files.php - - message: '#^Variable \$current_state might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/expand_contract_inc.php - - message: '#^Variable \$s on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/formdata.inc.php - - message: '#^Variable \$where might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/forms.inc.php - - message: '#^Variable \$text on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/htmlspecialchars.inc.php - - message: '#^Undefined variable\: \$CPR$#' - identifier: variable.undefined - count: 2 - path: ../library/ippf_issues.inc.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/ippf_issues.inc.php - - message: '#^Variable \$datetimepicker_formatInput might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/js/xl/jquery-datetimepicker-2-5-4.js.php - - message: '#^Variable \$datetimepicker_showseconds might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/js/xl/jquery-datetimepicker-2-5-4.js.php - - message: '#^Variable \$datetimepicker_timepicker might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/js/xl/jquery-datetimepicker-2-5-4.js.php - - message: '#^Undefined variable\: \$disabled$#' - identifier: variable.undefined - count: 1 - path: ../library/options.inc.php - - message: '#^Undefined variable\: \$lbfonchange$#' - identifier: variable.undefined - count: 1 - path: ../library/options.inc.php - - message: '#^Undefined variable\: \$list_id_esc$#' - identifier: variable.undefined - count: 1 - path: ../library/options.inc.php - - message: '#^Undefined variable\: \$under$#' - identifier: variable.undefined - count: 1 - path: ../library/options.inc.php - - message: '#^Variable \$encounterResult in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/options.inc.php - - message: '#^Variable \$group_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/options.inc.php - - message: '#^Variable \$lrow might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../library/options.inc.php - - message: '#^Variable \$metadata might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/options.inc.php - - message: '#^Variable \$pdrow in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../library/options.inc.php - - message: '#^Variable \$tmp in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/options.inc.php - - message: '#^Variable \$insarr might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/patient.inc.php - - message: '#^Variable \$returnval might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../library/patient.inc.php - - message: '#^Variable \$AccountCode might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/payment.inc.php - - message: '#^Variable \$AdjustString might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/payment.inc.php - - message: '#^Variable \$all might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/pnotes.inc.php - - message: '#^Variable \$all might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/registry.inc.php - - message: '#^Variable \$category on left side of \?\?\= is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../library/registry.inc.php - - message: '#^Function fetch_reminders invoked with 1 parameter, 2 required\.$#' - identifier: arguments.count - count: 4 - path: ../library/reminders.php - - message: '#^Variable \$tempCollectReminders might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/reminders.php - - message: '#^Variable \$update_rem_log might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/reminders.php - - message: '#^Variable \$where might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/reminders.php - - message: '#^Variable \$arcount might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/report.inc.php - - message: '#^Variable \$ret might not be defined\.$#' - identifier: variable.undefined - count: 15 - path: ../library/report.inc.php - - message: '#^Variable \$retar might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/report.inc.php - - message: '#^Variable \$pass_sql might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/report_database.inc.php - - message: '#^Method Smarty_Compiler_Legacy\:\:_compile_tag\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Method Smarty_Compiler_Legacy\:\:_pop_tag\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$_output might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$arg_list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$attr_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$compiled_ref might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$expr might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$include_file might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$last_token might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$message might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$plugin_func might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Variable \$return might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Compiler_Legacy.class.php - - message: '#^Undefined variable\: \$dummy$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php - - message: '#^Variable \$_debug_start_time might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php - - message: '#^Variable \$_included_tpls_idx might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php - - message: '#^Variable \$_smarty_results might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php - - message: '#^Variable \$debug_start_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php - - message: '#^Variable \$included_tpls_idx might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/Smarty_Legacy.class.php - - message: '#^Variable \$_readable might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/internals/core.get_php_resource.php - - message: '#^Variable \$_template_source might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/internals/core.get_php_resource.php - - message: '#^Variable \$_message might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/internals/core.load_plugins.php - - message: '#^Variable \$_plugin_func might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/internals/core.load_plugins.php - - message: '#^Variable \$debug_start_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/internals/core.process_cached_inserts.php - - message: '#^Function smarty_core_run_insert_handler\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../library/smarty_legacy/smarty/internals/core.run_insert_handler.php - - message: '#^Variable \$_debug_start_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/internals/core.run_insert_handler.php - - message: '#^Variable \$_config_vars might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../library/smarty_legacy/smarty/plugins/function.config_load.php - - message: '#^Variable \$_debug_start_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.config_load.php - - message: '#^Undefined variable\: \$_var_compiled$#' - identifier: variable.undefined - count: 2 - path: ../library/smarty_legacy/smarty/plugins/function.eval.php - - message: '#^Variable \$accept in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.fetch.php - - message: '#^Function smarty_function_html_checkboxes\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_checkboxes.php - - message: '#^Variable \$values in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_checkboxes.php - - message: '#^Variable \$file in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_image.php - - message: '#^Variable \$options in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_options.php - - message: '#^Variable \$values in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_options.php - - message: '#^Function smarty_function_html_radios\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_radios.php - - message: '#^Variable \$_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_radios.php - - message: '#^Variable \$values in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_radios.php - - message: '#^Variable \$day_empty in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_select_date.php - - message: '#^Variable \$month_empty in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_select_date.php - - message: '#^Variable \$year_empty in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_select_date.php - - message: '#^Undefined variable\: \$loop$#' - identifier: variable.undefined - count: 2 - path: ../library/smarty_legacy/smarty/plugins/function.html_table.php - - message: '#^Variable \$caption in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.html_table.php - - message: '#^Variable \$function in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.popup.php - - message: '#^Variable \$inarray in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.popup.php - - message: '#^Variable \$text in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.popup.php - - message: '#^Function smarty_function_popup_init\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../library/smarty_legacy/smarty/plugins/function.popup_init.php - - message: '#^Variable \$smarty might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/smarty_legacy/smarty/plugins/modifier.date_format.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/specialty_forms.php - - message: '#^Variable \$bcodes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/spreadsheet.inc.php - - message: '#^Variable \$cellstatic might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/spreadsheet.inc.php - - message: '#^Variable \$encounter might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/spreadsheet.inc.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/spreadsheet.inc.php - - message: '#^Variable \$saveid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/spreadsheet.inc.php - - message: '#^Variable \$spreadsheet_form_name might not be defined\.$#' - identifier: variable.undefined - count: 21 - path: ../library/spreadsheet.inc.php - - message: '#^Variable \$userauthorized might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/spreadsheet.inc.php - - message: '#^Variable \$handle1 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/standard_tables_capture.inc.php - - message: '#^Variable \$new_str might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../library/standard_tables_capture.inc.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/translation.inc.php - - message: '#^Variable \$use_validate_js might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../library/validation/validation_script.js.php - - message: '#^Variable \$check_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/batch_phone_notification.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/batch_phone_notification.php - - message: '#^Variable \$ssql might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/batch_phone_notification.php - - message: '#^Variable \$EMAIL_NOTIFICATION_HOUR might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../modules/sms_email_reminder/cron_email_notification.php - - message: '#^Variable \$data_info might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/cron_email_notification.php - - message: '#^Variable \$patient_info might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/cron_email_notification.php - - message: '#^Variable \$smsgateway_info might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/cron_email_notification.php - - message: '#^Class sms constructor invoked with 3 parameters, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../modules/sms_email_reminder/cron_sms_notification.php - - message: '#^Variable \$SMS_NOTIFICATION_HOUR might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../modules/sms_email_reminder/cron_sms_notification.php - - message: '#^Variable \$data_info might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/cron_sms_notification.php - - message: '#^Variable \$patient_info might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/cron_sms_notification.php - - message: '#^Variable \$smsgateway_info might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/cron_sms_notification.php - - message: '#^Access to an undefined property sms\:\:\$base\.$#' - identifier: property.notFound - count: 5 - path: ../modules/sms_email_reminder/sms_clickatell.php - - message: '#^Access to an undefined property sms\:\:\$base_s\.$#' - identifier: property.notFound - count: 3 - path: ../modules/sms_email_reminder/sms_clickatell.php - - message: '#^Method sms\:\:_send_sock\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../modules/sms_email_reminder/sms_tmb4.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../modules/sms_email_reminder/sms_tmb4.php - - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../portal/account/account.lib.php - - message: '#^Variable \$mname on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../portal/account/account.lib.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/account/account.php - - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../portal/account/index_reset.php - - message: '#^Variable \$portalRegistrationAuthorization might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/account/register.php - - message: '#^Variable \$hiddenLanguageField might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/account/verify.php - - message: '#^Variable \$result2 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/account/verify.php - - message: '#^Variable \$result3 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/account/verify.php - - message: '#^Variable \$eid in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 3 - path: ../portal/add_edit_event_user.php - - message: '#^Variable \$event_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/add_edit_event_user.php - - message: '#^Variable \$insert might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/add_edit_event_user.php - - message: '#^Variable \$patientname might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/add_edit_event_user.php - - message: '#^Variable \$providers_current might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/add_edit_event_user.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/add_edit_event_user.php - - message: '#^Variable \$starttime might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/add_edit_event_user.php - - message: '#^Variable \$providerid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/find_appt_popup_user.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/find_appt_popup_user.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_allergies.php - - message: '#^Variable \$class might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_amendments.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_amendments.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_lab_results.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_medications.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_patient_documents.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_patient_documents.php - - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 2 - path: ../portal/get_patient_info.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_patient_info.php - - message: '#^Variable \$userData in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../portal/get_patient_info.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_prescriptions.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_pro.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/get_problems.php - - message: '#^Variable \$insurance_data_array might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/get_profile.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../portal/get_profile.php - - message: '#^Variable \$landingpage might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/home.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../portal/home.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/home.php - - message: '#^Variable \$defaultLangID might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/index.php - - message: '#^Variable \$defaultLangName might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/index.php - - message: '#^Variable \$languageRegistration on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../portal/index.php - - message: '#^Variable \$one_time might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/index.php - - message: '#^Variable \$redirectUrl in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 3 - path: ../portal/index.php - - message: '#^Variable \$result2 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/index.php - - message: '#^Variable \$result3 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/index.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/lib/doc_lib.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/lib/patient_groups.php - - message: '#^Variable \$ccaudit might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/lib/paylib.php - - message: '#^Variable \$invoice might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/lib/paylib.php - - message: '#^Variable \$response might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/lib/paylib.php - - message: '#^Variable \$landingpage might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/logout.php - - message: '#^Variable \$owner in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../portal/messaging/handle_note.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/messaging/handle_note.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/messaging/messages.php - - message: '#^Variable \$resultpd on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../portal/messaging/messages.php - - message: '#^Variable \$resultusers on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../portal/messaging/messages.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/messaging/messages.php - - message: '#^Instantiated class OpenEMR\\PatientPortal\\Chat\\ChatController not found\.$#' - identifier: class.notFound - count: 1 - path: ../portal/messaging/secure_chat.php - - message: '#^Instantiated class specify not found\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/_global_config.php - - message: '#^Variable \$disable_utf8_flag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/patient/_machine_config.php - - message: '#^Method Savant3_Filter_trimwhitespace\:\:replace\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/savant/Savant3/resources/Savant3_Filter_trimwhitespace.php - - message: '#^Method parseCSV\:\:_check_count\(\) should return special but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/util/parsecsv.lib.php - - message: '#^Method parseCSV\:\:encoding\(\) should return nothing but return statement is missing\.$#' - identifier: return.missing - count: 2 - path: ../portal/patient/fwk/libs/util/parsecsv.lib.php - - message: '#^Function mysql_affected_rows not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_close not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_error not found\.$#' - identifier: function.notFound - count: 4 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_fetch_assoc not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_free_result not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_insert_id not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_ping not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_query not found\.$#' - identifier: function.notFound - count: 2 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_select_db not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_set_charset not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL.php - - message: '#^Function mysql_ping not found\.$#' - identifier: function.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/DB/DataDriver/MySQL_PDO.php - - message: '#^Undefined variable\: \$attachment$#' - identifier: variable.undefined - count: 4 - path: ../portal/patient/fwk/libs/verysimple/HTTP/FileUpload.php - - message: '#^Variable \$_POST in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../portal/patient/fwk/libs/verysimple/HTTP/RequestUtil.php - - message: '#^Access to an undefined property CacheMemCache\:\:\$LastServerError\.$#' - identifier: property.notFound - count: 4 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/CacheMemCache.php - - message: '#^Method CacheNoCache\:\:Set\(\) should return VARIANT but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/CacheNoCache.php - - message: '#^Method CacheRam\:\:Set\(\) should return VARIANT but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/CacheRam.php - - message: '#^Access to an undefined property DataSet\:\:\$_total\.$#' - identifier: property.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/DataSet.php - - message: '#^Class GenericRouter constructor invoked with 0 parameters, 3 required\.$#' - identifier: arguments.count - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/Dispatcher.php - - message: '#^Call to static method createWriter\(\) on an unknown class PHPExcel_IOFactory\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/ExportUtility.php - - message: '#^Instantiated class PHPExcel not found\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/ExportUtility.php - - message: '#^Access to an undefined property MockRouter\:\:\$delim\.$#' - identifier: property.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/MockRouter.php - - message: '#^Access to an undefined property MockRouter\:\:\$stripApi\.$#' - identifier: property.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/MockRouter.php - - message: '#^Access to an undefined property PHPRenderEngine\:\:\$templatePath\.$#' - identifier: property.notFound - count: 2 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PHPRenderEngine.php - - message: '#^Method Phreezable\:\:__serialize\(\) should return array\ but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/Phreezable.php - - message: '#^Method Phreezer\:\:GetPrimaryKeyMap\(\) should return KeyMap but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/Phreezer.php - - message: '#^Class GenericRouter constructor invoked with 0 parameters, 3 required\.$#' - identifier: arguments.count - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Class IRSSFeedItem not found\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Instantiated class RSS_Writer not found\.$#' - identifier: class.notFound - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - message: '#^Method Reporter\:\:__serialize\(\) should return array\ but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/Reporter.php - - message: '#^Constructor of class SimpleRouter has an unused parameter \$appRootUrl\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/SimpleRouter.php - - message: '#^Method SimpleRouter\:\:GetUri\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/Phreeze/SimpleRouter.php - - message: '#^Method VerySimpleStringUtil\:\:unicode_entity_replace\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../portal/patient/fwk/libs/verysimple/String/VerySimpleStringUtil.php - - message: '#^Variable \$errors on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../portal/patient/libs/Controller/OnsiteDocumentController.php - - message: '#^Variable \$output might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/patient/libs/Controller/PatientController.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/patient/templates/DefaultError404.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 9 - path: ../portal/patient/templates/DefaultErrorFatal.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../portal/patient/templates/OnsiteActivityViewListView.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 14 - path: ../portal/patient/templates/OnsiteDocumentListView.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../portal/patient/templates/OnsitePortalActivityListView.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 14 - path: ../portal/patient/templates/PatientListView.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../portal/patient/templates/ProviderHome.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/patient/templates/_FormsHeader.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../portal/patient/templates/_Header.tpl.php - - message: '#^Variable \$this might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../portal/patient/templates/_modalFormHeader.tpl.php - - message: '#^Variable \$arates in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../portal/portal_payment.php - - message: '#^Variable \$form_pid might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/portal_payment.php - - message: '#^Variable \$payment_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/portal_payment.php - - message: '#^Variable \$payrow might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/portal_payment.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/portal_payment.php - - message: '#^Variable \$session_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/portal_payment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../portal/portal_payment.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/portal_payment.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/document_downloads_action.php - - message: '#^Variable \$adj_amt might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/pat_ledger.php - - message: '#^Variable \$last_year might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/report/pat_ledger.php - - message: '#^Variable \$pid might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../portal/report/pat_ledger.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/pat_ledger.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$OE_SITE_DIR might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$from_file_tmp_name might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$insurance_data_array might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$prevIssueType might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$tmp_files_remove might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$v_js_includes might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../portal/report/portal_custom_report.php - - message: '#^Variable \$ISSUE_TYPES might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/portal_patient_report.php - - message: '#^Variable \$rootdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../portal/report/portal_patient_report.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../portal/report/portal_patient_report.php - - message: '#^Variable \$OE_SITES_BASE might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../setup.php - - message: '#^Variable \$config in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 2 - path: ../setup.php - - message: '#^Variable \$memory_limit_mb might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../setup.php - - message: '#^Variable \$randomsecret in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../setup.php - - message: '#^Variable \$sqlconf might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../setup.php - - message: '#^Variable \$state on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../setup.php - - message: '#^Undefined variable\: \$pid$#' - identifier: variable.undefined - count: 1 - path: ../sites/default/LBF/LBFathbf.plugin.php - - message: '#^Undefined variable\: \$pid$#' - identifier: variable.undefined - count: 1 - path: ../sites/default/LBF/LBFvbf.plugin.php - - message: '#^Variable \$desc might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sites/default/statement.inc.php - - message: '#^Variable \$dun_message might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../sites/default/statement.inc.php - - message: '#^Variable \$patientIdCc might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sphere/initial_response.php - - message: '#^Variable \$GLOBALS_METADATA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_patch.php - - message: '#^Variable \$v_database might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_patch.php - - message: '#^Variable \$v_major might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_patch.php - - message: '#^Variable \$v_minor might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_patch.php - - message: '#^Variable \$v_patch might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_patch.php - - message: '#^Variable \$v_realpatch might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../sql_patch.php - - message: '#^Variable \$v_tag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_patch.php - - message: '#^Variable \$GLOBALS_METADATA might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_upgrade.php - - message: '#^Variable \$result2 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../sql_upgrade.php - - message: '#^Variable \$v_database might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_upgrade.php - - message: '#^Variable \$v_major might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_upgrade.php - - message: '#^Variable \$v_minor might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_upgrade.php - - message: '#^Variable \$v_patch might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_upgrade.php - - message: '#^Variable \$v_tag might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_upgrade.php - - message: '#^Variable \$webserver_root might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../sql_upgrade.php - - message: '#^Variable \$query_part_day might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../src/Billing/BillingReport.php - - message: '#^Variable \$query_part_day1 might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Billing/BillingReport.php - - message: '#^Variable \$row might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Billing/BillingUtilities.php - - message: '#^Variable \$msp might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Billing/Claim.php - - message: '#^Variable \$tmp in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Billing/Claim.php - - message: '#^Variable \$tmp might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Billing/Claim.php - - message: '#^Variable \$elog might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Billing/EDI270.php - - message: '#^Variable \$field in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Billing/EDI270.php - - message: '#^Variable \$responses in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Billing/EDI270.php - - message: '#^Variable \$returnval might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Billing/EDI270.php - - message: '#^Variable \$segmentcount might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Billing/EDI270.php - - message: '#^Variable \$MDY might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Billing/Hcfa1500.php - - message: '#^Variable \$encounter_claim on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Billing/X125010837I.php - - message: '#^Variable \$allowed might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php - - message: '#^Variable \$columns might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php - - message: '#^Variable \$fld_target_criteria on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/ClinicalDecisionRules/Interface/Controller/ControllerEdit.php - - message: '#^Variable \$message on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/ClinicalDecisionRules/Interface/RuleLibrary/Rule.php - - message: '#^Variable \$arr_group_titles might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Common/Acl/AclExtended.php - - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/Common/Auth/AuthUtils.php - - message: '#^Parameter \$previous of method OpenEMR\\Common\\Auth\\Exception\\OneTimeAuthException\:\:__construct\(\) has invalid type OpenEMR\\Common\\Auth\\Exception\\Throwable\.$#' - identifier: class.notFound - count: 1 - path: ../src/Common/Auth/Exception/OneTimeAuthException.php - - message: '#^Parameter \$previous of method OpenEMR\\Common\\Auth\\Exception\\OneTimeAuthExpiredException\:\:__construct\(\) has invalid type OpenEMR\\Common\\Auth\\Exception\\Throwable\.$#' - identifier: class.notFound - count: 1 - path: ../src/Common/Auth/Exception/OneTimeAuthExpiredException.php - - message: '#^Method OpenEMR\\Common\\Auth\\MfaUtils\:\:checkU2F\(\) should return bool but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../src/Common/Auth/MfaUtils.php - - message: '#^Variable \$response might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Common/Auth/MfaUtils.php - - message: '#^Variable \$this_contacts in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../src/Common/Auth/OpenIDConnect/Entities/ClientEntity.php - - message: '#^Variable \$client in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Common/Auth/OpenIDConnect/Grant/CustomPasswordGrant.php - - message: '#^Variable \$clients in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Common/Auth/OpenIDConnect/Repositories/ClientRepository.php - - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../src/Common/Auth/OpenIDConnect/Repositories/RefreshTokenRepository.php - - message: '#^Variable \$issues might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Common/Command/CreateReleaseChangelogCommand.php - - message: '#^Constructor of class OpenEMR\\Common\\Forms\\FormVitals has an unused parameter \$_prefix\.$#' - identifier: constructor.unusedParameter - count: 1 - path: ../src/Common/Forms/FormVitals.php - - message: '#^Variable \$code_types in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../src/Common/Forms/Types/BillingCodeType.php - - message: '#^Variable \$tmp in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Common/Forms/Types/LocalProviderListType.php - - message: '#^Variable \$parts in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Common/Http/HttpRestParsedRoute.php - - message: '#^Variable \$test in isset\(\) always exists and is not nullable\.$#' - identifier: isset.variable - count: 1 - path: ../src/Common/Layouts/LayoutsUtils.php - - message: '#^Access to an undefined property OpenEMR\\Common\\ORDataObject\\ContactAddress\:\:\$use\.$#' - identifier: property.notFound - count: 1 - path: ../src/Common/ORDataObject/ContactAddress.php - - message: '#^Call to an undefined method OpenEMR\\Common\\ORDataObject\\ORDataObject\:\:get_id\(\)\.$#' - identifier: method.notFound - count: 1 - path: ../src/Common/ORDataObject/ORDataObject.php - - message: '#^Variable \$enum might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Common/ORDataObject/ORDataObject.php - - message: '#^Variable \$values might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Common/ORDataObject/ORDataObject.php - - message: '#^Method OpenEMR\\Core\\Header\:\:readConfigFile\(\) should return array but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../src/Core/Header.php - - message: '#^Method OpenEMR\\Core\\Header\:\:setupHeader\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../src/Core/Header.php - - message: '#^Class OpenEMR\\Cqm\\CqmClient constructor invoked with 0 parameters, 2\-4 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/Cqm/test.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:usingHeaders\(\)\.$#' - identifier: staticMethod.notFound - count: 5 - path: ../src/Easipro/Easipro.php - - message: '#^Undefined variable\: \$row$#' - identifier: variable.undefined - count: 1 - path: ../src/Easipro/Easipro.php - - message: '#^Variable \$returnval might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Easipro/Easipro.php - - message: '#^Method OpenEMR\\Events\\Messaging\\SendNotificationEvent\:\:setSendNotificationMethod\(\) should return OpenEMR\\Events\\Messaging\\SendNotificationEvent but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../src/Events/Messaging/SendNotificationEvent.php - - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Events/Messaging/SendNotificationEvent.php - - message: '#^Access to an undefined property OpenEMR\\Gacl\\Gacl\:\:\$Cache_Lite\.$#' - identifier: property.notFound - count: 5 - path: ../src/Gacl/Gacl.php - - message: '#^Instantiated class OpenEMR\\Gacl\\Hashed_Cache_Lite not found\.$#' - identifier: class.notFound - count: 1 - path: ../src/Gacl/Gacl.php - - message: '#^Variable \$retarr might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Gacl/Gacl.php - - message: '#^Access to an undefined property OpenEMR\\Gacl\\GaclApi\:\:\$Cache_Lite\.$#' - identifier: property.notFound - count: 6 - path: ../src/Gacl/GaclApi.php - - message: '#^Undefined variable\: \$row_count$#' - identifier: variable.undefined - count: 1 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$groups_map_table might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$object_group_table might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$object_map_table might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$object_sections_table might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$object_type in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 7 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$retarr might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$table might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Gacl/GaclApi.php - - message: '#^Variable \$where in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Gacl/GaclApi.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' - identifier: staticMethod.notFound - count: 1 - path: ../src/MedicalDevice/MedicalDevice.php - - message: '#^Variable \$catEntry might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../src/Menu/MainMenuRole.php - - message: '#^Method OpenEMR\\Menu\\MenuRole\:\:displayMenuRoleSelector\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../src/Menu/MenuRole.php - - message: '#^Method OpenEMR\\Menu\\MenuRole\:\:getMenu\(\) should return array but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../src/Menu/MenuRole.php - - message: '#^Method OpenEMR\\Menu\\MenuRole\:\:getMenuRole\(\) should return string but return statement is missing\.$#' - identifier: return.missing - count: 1 - path: ../src/Menu/MenuRole.php - - message: '#^Variable \$action might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/OeUI/OemrUI.php - - message: '#^Variable \$action_href might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/OeUI/OemrUI.php - - message: '#^Variable \$action_title might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../src/OeUI/OemrUI.php - - message: '#^Variable \$frontSpecificRetail might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/PaymentProcessing/Sphere/SpherePayment.php - - message: '#^Variable \$trxcustidRetail might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/PaymentProcessing/Sphere/SpherePayment.php - - message: '#^Variable \$trxcustidRetailLicensekey might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/PaymentProcessing/Sphere/SpherePayment.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:getCurlOptions\(\)\.$#' - identifier: staticMethod.notFound - count: 1 - path: ../src/Pharmacy/Services/ImportPharmacies.php - - message: '#^Variable \$zip might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Pharmacy/Services/ImportPharmacies.php - - message: '#^Class OpenEMR\\Services\\FHIR\\FhirDocRefService constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/RestControllers/FHIR/Operations/FhirOperationDocRefRestController.php - - message: '#^Variable \$exportWriter might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/RestControllers/FHIR/Operations/FhirOperationExportRestController.php - - message: '#^Variable \$outputResult might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/RestControllers/FHIR/Operations/FhirOperationExportRestController.php - - message: '#^Variable \$resource might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/RestControllers/FHIR/Operations/FhirOperationExportRestController.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' - identifier: staticMethod.notFound - count: 1 - path: ../src/Rx/RxList.php - - message: '#^Variable \$all might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Rx/RxList.php - - message: '#^Variable \$ending might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Rx/RxList.php - - message: '#^Variable \$list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Rx/RxList.php - - message: '#^Variable \$my_data might not be defined\.$#' - identifier: variable.undefined - count: 6 - path: ../src/Rx/RxList.php - - message: '#^Variable \$type might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Rx/RxList.php - - message: '#^Variable \$ct_id might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$date might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$enc_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$enc_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$encounter_for_forms in empty\(\) always exists and is always falsy\.$#' - identifier: empty.variable - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$encounter_for_forms might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$encounter_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$end_date might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$facility_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$forms_encounters on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$id_data might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$immunization_date_value might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$list_id might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$med_pblm_begdate_value might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$med_pblm_enddate_value might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$o_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$oid_unit might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$pro_id might not be defined\.$#' - identifier: variable.undefined - count: 8 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$provider_id might not be defined\.$#' - identifier: variable.undefined - count: 10 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res3 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res6 might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res_q_sel_allergies might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res_q_sel_encounter might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res_q_sel_imm might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res_q_sel_med_pblm might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res_q_sel_vitals might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$res_query_sel_fac might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$static_encounter in empty\(\) is never defined\.$#' - identifier: empty.variable - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$test on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$vitals_date_value might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$vitals_id might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../src/Services/Cda/CdaTemplateImportDispose.php - - message: '#^Variable \$code might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Cda/CdaTemplateParse.php - - message: '#^Variable \$func_name in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 4 - path: ../src/Services/Cda/CdaTemplateParse.php - - message: '#^Variable \$reason_status on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/Cda/CdaTemplateParse.php - - message: '#^Variable \$result_status on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 2 - path: ../src/Services/Cda/CdaTemplateParse.php - - message: '#^Variable \$value on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 4 - path: ../src/Services/Cda/CdaTemplateParse.php - - message: '#^Variable \$form_id in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Services/ClinicalNotesService.php - - message: '#^Variable \$code in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Services/CodeTypesService.php - - message: '#^Variable \$code on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 3 - path: ../src/Services/CodeTypesService.php - - message: '#^Variable \$tmp on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/CodeTypesService.php - - message: '#^Variable \$type on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 3 - path: ../src/Services/CodeTypesService.php - - message: '#^Variable \$valueset on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/CodeTypesService.php - - message: '#^Variable \$valueset_name on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/CodeTypesService.php - - message: '#^Variable \$attributes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/DecisionSupportInterventionService.php - - message: '#^Variable \$service might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/DecisionSupportInterventionService.php - - message: '#^Variable \$q_id might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/DocumentTemplates/DocumentTemplateRender.php - - message: '#^Variable \$group_list might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/DocumentTemplates/DocumentTemplateService.php - - message: '#^Variable \$rtn might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/DocumentTemplates/DocumentTemplateService.php - - message: '#^Variable \$tid on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/DocumentTemplates/DocumentTemplateService.php - - message: '#^Undefined variable\: \$puuid$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/DrugService.php - - message: '#^Variable \$puuid in isset\(\) is never defined\.$#' - identifier: isset.variable - count: 1 - path: ../src/Services/DrugService.php - - message: '#^Variable \$code might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/FHIR/FhirImmunizationService.php - - message: '#^Variable \$display might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/FHIR/FhirImmunizationService.php - - message: '#^Variable \$class_object might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/FHIR/FhirResourcesService.php - - message: '#^Variable \$codeMapping in isset\(\) always exists and is always null\.$#' - identifier: isset.variable - count: 1 - path: ../src/Services/FHIR/Observation/FhirObservationLaboratoryService.php - - message: '#^Variable \$parsed_reference in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Services/FHIR/UtilsService.php - - message: '#^Variable \$result might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/InsuranceCompanyService.php - - message: '#^Variable \$return might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/LogoService.php - - message: '#^Class OpenEMR\\Common\\Auth\\AuthHash constructor invoked with 1 parameter, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/Services/PatientAccessOnsiteService.php - - message: '#^Class OpenEMR\\Events\\Patient\\Summary\\PortalCredentialsTemplateDataFilterEvent constructor invoked with 2 parameters, 0 required\.$#' - identifier: arguments.count - count: 1 - path: ../src/Services/PatientAccessOnsiteService.php - - message: '#^Variable \$kernel in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Services/PatientAccessOnsiteService.php - - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/PatientPortalService.php - - message: '#^Variable \$days might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/PatientTrackerService.php - - message: '#^Variable \$hours might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/PatientTrackerService.php - - message: '#^Variable \$minutes might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/PatientTrackerService.php - - message: '#^Variable \$returnval might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/PatientTrackerService.php - - message: '#^Variable \$area_code on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/PhoneNumberService.php - - message: '#^Variable \$foreignId on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/PhoneNumberService.php - - message: '#^Variable \$number on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/PhoneNumberService.php - - message: '#^Variable \$prefix on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/PhoneNumberService.php - - message: '#^Variable \$type on left side of \?\? is never defined\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/PhoneNumberService.php - - message: '#^Variable \$result on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/Qrda/Cat1.php - - message: '#^Variable \$flatArray on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/QuestionnaireResponseService.php - - message: '#^Variable \$v on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/QuestionnaireResponseService.php - - message: '#^Variable \$form in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Services/QuestionnaireService.php - - message: '#^Variable \$q_url might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/QuestionnaireService.php - - message: '#^Variable \$q_uuid might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/QuestionnaireService.php - - message: '#^Variable \$DateValue on left side of \?\? always exists and is not nullable\.$#' - identifier: nullCoalesce.variable - count: 1 - path: ../src/Services/Utils/DateFormatterUtils.php - - message: '#^Variable \$newDate might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../src/Services/Utils/DateFormatterUtils.php - - message: '#^Variable \$records might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../src/Services/Utils/SQLUpgradeService.php - - message: '#^Variable \$subject in empty\(\) always exists and is not falsy\.$#' - identifier: empty.variable - count: 1 - path: ../src/Services/Utils/SQLUpgradeService.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../templates/super/rules/base/template/basic.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../templates/super/rules/base/template/criteria.php - - message: '#^Variable \$_redirect might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../templates/super/rules/base/template/redirect.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../templates/super/rules/controllers/alerts/list_actmgr.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../templates/super/rules/controllers/detail/view.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 2 - path: ../templates/super/rules/controllers/edit/action.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 4 - path: ../templates/super/rules/controllers/edit/add_criteria.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../templates/super/rules/controllers/edit/age.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 14 - path: ../templates/super/rules/controllers/edit/bucket.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 18 - path: ../templates/super/rules/controllers/edit/custom.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../templates/super/rules/controllers/edit/diagnosis.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../templates/super/rules/controllers/edit/intervals.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 7 - path: ../templates/super/rules/controllers/edit/lifestyle.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../templates/super/rules/controllers/edit/sex.php - - message: '#^Variable \$criteria might not be defined\.$#' - identifier: variable.undefined - count: 3 - path: ../templates/super/rules/controllers/edit/simple_text_criteria.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../templates/super/rules/controllers/edit/summary.php - - message: '#^Variable \$viewBean might not be defined\.$#' - identifier: variable.undefined - count: 5 - path: ../templates/super/rules/controllers/review/view.php - - message: '#^Caught class OpenEMR\\Tests\\E2e\\User\\Exception not found\.$#' - identifier: class.notFound - count: 1 - path: ../tests/Tests/E2e/BbCreateStaffTest.php - - message: '#^Instantiated class OpenEMR\\Tests\\E2e\\User\\Exception not found\.$#' - identifier: class.notFound - count: 1 - path: ../tests/Tests/E2e/BbCreateStaffTest.php - - message: '#^Class OpenEMR\\ClinicalDecisionRules\\Interface\\ActionRouter constructor invoked with 3 parameters, 2 required\.$#' - identifier: arguments.count - count: 3 - path: ../tests/Tests/Unit/ClinicalDecisionRules/ActionRouterTest.php - - message: '#^Class OpenEMR\\ClinicalDecisionRules\\Interface\\ActionRouter constructor invoked with 3 parameters, 2 required\.$#' - identifier: arguments.count - count: 1 - path: ../tests/Tests/Unit/ClinicalDecisionRules/ControllerRouterTest.php - - # Optional custom files - checked with file_exists() before include - - - message: '#^Path in include_once\(\) "\.\./\.\./custom/fee_sheet_codes\.php" is not a file or it does not exist\.$#' - identifier: includeOnce.fileNotFound - path: ../interface/patient_file/printed_fee_sheet.php - - - message: '#^Path in include\(\) "\.\./\.\./\.\./custom/demographics_print\.php" is not a file or it does not exist\.$#' - identifier: include.fileNotFound - path: ../interface/patient_file/summary/demographics_print.php - - # Legacy PostNuke calendar files - header/footer don't exist - - - message: '#^Path in include\(\) "header\.php" is not a file or it does not exist\.$#' - identifier: include.fileNotFound - path: ../interface/main/calendar/includes/pnHTML.php - - - message: '#^Path in include\(\) "footer\.php" is not a file or it does not exist\.$#' - identifier: include.fileNotFound - path: ../interface/main/calendar/includes/pnHTML.php - - # Windows compatibility file for getmxrr - conditionally included - - - message: '#^Path in include\(\) "getmxrr\.php" is not a file or it does not exist\.$#' - identifier: include.fileNotFound - path: ../modules/sms_email_reminder/cron_functions.php - - # Dead code - renderForm() is never called, path is wrong - - - message: '#^Path in include\(\) "views/esign_signature_log\.php" is not a file or it does not exist\.$#' - identifier: include.fileNotFound - path: ../library/ESign/DbRow/Signable.php - - # Optional PEAR/PHPExcel dependency - not installed - - - message: '#^Path in require_once\(\) "PEAR/PHPExcel\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - path: ../portal/patient/fwk/libs/verysimple/Phreeze/ExportUtility.php - - # Optional RSS functionality - files don't exist - - - message: '#^Path in require_once\(\) "verysimple/RSS/Writer\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - - message: '#^Path in require_once\(\) "verysimple/RSS/IRSSFeedItem\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - path: ../portal/patient/fwk/libs/verysimple/Phreeze/PortalController.php - - # Template path depends on runtime working directory - - - message: '#^Path in require_once\(\) "\.\./\.\./library/options\.inc\.php" is not a file or it does not exist\.$#' - identifier: requireOnce.fileNotFound - path: ../portal/patient/templates/PatientListView.tpl.php diff --git a/composer.json b/composer.json index 794f376ef7a7..cb975375a3d8 100644 --- a/composer.json +++ b/composer.json @@ -242,6 +242,19 @@ "phpcbf": "php -d memory_limit=4g ./vendor/bin/phpcbf --standard=ci/phpcs.xml .", "phpcs": "php -d memory_limit=4g ./vendor/bin/phpcs --standard=ci/phpcs.xml .", "phpstan": "php -d memory_limit=4g ./vendor/bin/phpstan analyze --configuration=phpstan.neon.dist", + "phpstan-baseline": [ + "if ! command -v yq >/dev/null 2>&1; then echo 'Error: yq is not installed.' >&2; exit 1; fi", + "echo '' > .phpstan/phpstan-curl-baseline.neon", + "echo '' > .phpstan/phpstan-database-baseline.neon", + "echo '' > .phpstan/phpstan-globals-baseline.neon", + "echo '' > .phpstan/phpstan-remaining-baseline.neon", + "php -d memory_limit=8g ./vendor/bin/phpstan analyze --configuration=phpstan.neon.dist --generate-baseline=tmp-phpstan/tmp.neon", + "expand tmp-phpstan/tmp.neon | yq -P '.parameters.ignoreErrors |= map(select(.identifier == \"openemr.forbiddenCurlFunction\"))' > .phpstan/phpstan-curl-baseline.neon", + "expand tmp-phpstan/tmp.neon | yq -P '.parameters.ignoreErrors |= ((map(select(.identifier == \"openemr.deprecatedSqlFunction\"))) + (map(select(.identifier == \"openemr.deprecatedLaminasDb\"))))' > .phpstan/phpstan-database-baseline.neon", + "expand tmp-phpstan/tmp.neon | yq -P '.parameters.ignoreErrors |= map(select(.identifier == \"openemr.forbiddenGlobalsAccess\"))' > .phpstan/phpstan-globals-baseline.neon", + "expand tmp-phpstan/tmp.neon | yq -P '.parameters.ignoreErrors |= map(select(.identifier != \"openemr.forbiddenCurlFunction\" and .identifier != \"openemr.deprecatedSqlFunction\" and .identifier != \"openemr.deprecatedLaminasDb\" and .identifier != \"openemr.forbiddenGlobalsAccess\"))' > .phpstan/phpstan-remaining-baseline.neon", + "rm tmp-phpstan/tmp.neon" + ], "rector-check": "php -d memory_limit=4g ./vendor/bin/rector process --dry-run", "rector-fix": "php -d memory_limit=4g ./vendor/bin/rector process", "require-checker": "php -d memory_limit=4g ./vendor/bin/composer-require-checker check --config-file=.composer-require-checker.json" From f0b2ab9db848c86d1958ce7cdece55195bca8d99 Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Mon, 5 Jan 2026 17:15:17 -0500 Subject: [PATCH 125/139] style(whitespace): consistent whitespace (#10103) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * style(whitespace): consistent whitespace - [x] remove trailing whitespace at end of line - [x] ensure exactly one newline at end of file - [x] ensure files use consistent linebreaks * ci(whitespace): add GitHub Action to check whitespace Runs pre-commit hooks (trailing-whitespace, end-of-file-fixer, mixed-line-ending) to catch whitespace issues in PRs. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 * ci(whitespace): check only changed files on PRs On pull requests, only check files changed in the PR. On push to branches, check all files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 * ci(whitespace): use tj-actions/changed-files for PR file detection Replace manual git diff with tj-actions/changed-files@v47 action. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --------- Co-authored-by: Claude Opus 4.5 --- .dclintrc.yaml | 2 +- .github/FUNDING.yml | 2 +- .github/ISSUE_TEMPLATE/bug_report.md | 2 - .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/workflows/docker-compose-lint.yml | 8 +- .github/workflows/hadolint.yml | 8 +- .github/workflows/whitespace.yml | 49 + .hadolint.yaml | 16 +- .phpstan/MIGRATION_GUIDE.md | 6 +- .phpstan/MIGRATION_GUIDE_CURL.md | 4 +- .phpstan/README.md | 2 +- API_README.md | 1 - Documentation/Direct_Messaging_README.txt | 147 +- Documentation/Emergency_User_README.txt | 5 +- Documentation/README-Log-Backup.txt | 1 - Documentation/SystemArchitecture.txt | 1 - Documentation/de_identification_readme.txt | 12 +- .../example_user_permissions.sql | 2 +- .../generate_table_permissions_script.sql | 2 +- Documentation/privileged_db/priv_db_HOWTO.txt | 8 +- acknowledge_license_cert.html | 1 - bin/command-runner | 2 +- ccdaservice/oe-blue-button-generate/LICENSE | 1 - .../lib/entryLevel/socialHistoryEntryLevel.js | 2 - .../oe-blue-button-generate/lib/fieldLevel.js | 1 - .../oe-blue-button-meta/lib/CCDA/index.js | 2 +- ccdaservice/oe-blue-button-util/LICENSE | 3 +- .../packages/oe-cda-schematron/Gruntfile.js | 3 +- .../oe-cda-schematron/parseSchematron.js | 32 +- .../packages/oe-cda-schematron/test/test.sch | 2 +- .../packages/oe-cda-schematron/test/test.xml | 2 +- .../packages/oe-cda-schematron/test/tests.js | 8 +- .../oe-cda-schematron/testAssertion.js | 8 +- .../packages/oe-cqm-service/.gitignore | 1 - .../utils/head-replace/head-replace.spec.js | 4 +- ccr/ccd/ccr_ccd.xsl | 10 +- ccr/ccd/lib/date.add.template.xsl | 20 +- ccr/ccd/lib/date.format-date.template.xsl | 16 +- ccr/ccd/lib/str.padding.template.xsl | 4 +- ccr/ccd/templates/cdavocablookup.xsl | 6 +- ccr/ccd/templates/cdavocabmap.xml | 2 +- ccr/ccd/templates/datetime.xsl | 2 +- ccr/ccd/templates/footer.xsl | 4 +- ccr/ccd/templates/hl7oid.xml | 6 +- ccr/ccd/templates/hl7oidlookup.xsl | 5 +- .../SDC FHIR/After_Visit_Assessment.json | 2 +- .../Back_Pain_History_Assessment.json | 2 +- .../SDC FHIR/Back_Pain_Impact_Assessment.json | 2 +- .../Back_Pain_Severity_Assessment.json | 2 +- .../SDC FHIR/Follow_Up_Assessment.json | 2 +- .../SDC FHIR/Full_Assessments.json | 2 +- .../Impact_of_Back_Pain_Assessment.json | 2 +- .../SDC FHIR/Medical_History_Assessment.json | 2 +- .../SDC FHIR/PROMIS_Anxiety_Assessment.json | 2 +- .../PROMIS_Depression_Assessment.json | 2 +- .../PROMIS_Interference_Assessment.json | 2 +- .../PROMIS_Physical_Activity_Assessment.json | 2 +- .../PROMIS_Physical_Function_Assessment.json | 2 +- .../SDC FHIR/PROMIS_Sleep_Assessment.json | 2 +- .../SDC FHIR/Pain_Initial_Assessment.json | 2 +- .../SDC FHIR/Safety_Outcomes_Assessment.json | 2 +- .../Shared_Decision_Making_Assessment.json | 2 +- .../SDC FHIR/Social_Factors_Assessment.json | 2 +- contrib/util/language_translations/README | 6 +- .../combineConstantsSpreadsheet.pl | 23 +- .../currentConstants.txt | 276 ++-- .../currentLanguage_utf8.sql | 1 - .../util/language_translations/lang_dump.plx | 1 - .../util/language_translations/lang_load.plx | 1 - .../log_buildLanguageDatabase.txt | 72 +- .../manuallyRemovedConstants.txt | 1 - .../language_translations/sortCleanList.pl | 6 +- contrib/util/load_fda_drugs.plx | 4 +- contrib/util/load_icd_desc.plx | 1 - contrib/util/undelete_from_log/README.TXT | 10 +- .../undelete_from_log/convert_logcomments.pl | 46 +- custom/assets/README | 4 - custom/assets/css/README | 2 +- custom/assets/custom.yaml.example | 2 - custom/assets/js/README | 2 +- custom/readme_rx_printtofax.txt | 6 +- .../dockers/dev-php-fpm-5-6-redis/php.ini | 2 +- .../library/dockers/dev-php-fpm-5-6/php.ini | 2 +- .../ldap-ssl-certs-keys/easy/Dockerfile | 1 - .../ldap-ssl-certs-keys/insane/Dockerfile | 1 - interface/batchcom/batch_navigation.php | 1 - interface/batchcom/batch_reminders.php | 1 - .../de_identification_procedure.sh | 3 - .../de_identification_screen2.php | 1 - .../re_identification_input_screen.php | 1 - .../re_identification_op_single_patient.php | 1 - .../re_identification_procedure.sh | 3 - interface/forms/aftercare_plan/info.txt | 2 +- interface/forms/aftercare_plan/table.sql | 3 +- interface/forms/care_plan/info.txt | 2 +- interface/forms/care_plan/save.php | 6 +- interface/forms/care_plan/table.sql | 1 - .../forms/clinical_instructions/info.txt | 2 +- .../forms/clinical_instructions/table.sql | 1 - .../css/contraception_products.css | 3 +- interface/forms/fee_sheet/table.sql | 1 - .../functional_cognitive_status/info.txt | 2 +- .../forms/functional_cognitive_status/new.php | 1 - .../functional_cognitive_status/table.sql | 1 - interface/forms/gad7/gad7_javasrc.js | 5 +- interface/forms/gad7/info.txt | 1 - interface/forms/group_attendance/info.txt | 2 +- interface/forms/group_attendance/table.sql | 2 +- interface/forms/note/info.txt | 2 +- interface/forms/observation/table.sql | 1 - interface/forms/painmap/info.txt | 2 +- interface/forms/painmap/templates/README.TXT | 4 +- interface/forms/phq9/info.txt | 1 - interface/forms/phq9/phq9_javasrc.js | 1 - .../procedure_order/handle_deletions.php | 8 +- .../procedure_order_save_functions.php | 60 +- interface/forms/procedure_order/table.sql | 1 - .../assets/styles/styles_openemr_lforms.css | 2 +- interface/forms/requisition/info.txt | 2 +- interface/forms/requisition/new.php | 1 - interface/forms/requisition/table.sql | 1 - interface/forms/ros/table.sql | 1 - interface/forms/track_anything/readme.txt | 1 - interface/forms/track_anything/table.sql | 1 - interface/forms/transfer_summary/info.txt | 2 +- interface/forms/transfer_summary/table.sql | 1 - interface/forms/treatment_plan/info.txt | 2 +- interface/forms/vitals/growthchart/page1.css | 2 +- .../templates/vitals/vitals_actions.html.twig | 2 +- .../templates/vitals/vitals_notes.html.twig | 2 +- interface/forms/vitals/vitals.js | 2 +- interface/language/lang.info.html | 1 - .../calendar/modules/PostCalendar/COPYING | 1 - .../main/calendar/modules/PostCalendar/README | 2 +- .../default/views/week/default.html | 2 +- interface/main/messages/js/reminder_appts.js | 1 - .../main/messages/js/trusted-messages.js | 2 +- .../main/tabs/js/application_view_model.js | 2 +- .../tabs/menu/menus/answering_service.json | 2 +- .../main/tabs/menu/menus/chart_review.json | 2 +- .../oe-module-claimrev-connect/CHANGELOG.md | 2 - .../oe-module-claimrev-connect/README.md | 8 +- .../oe-module-claimrev-connect/info.txt | 2 +- .../public/claims.php | 1 - .../public/debug-info.php | 1 - .../src/EligibilityData.php | 2 +- .../oe-module-claimrev-connect/table.sql | 7 +- .../templates/additional_info.php | 1 - .../templates/eligibility.php | 3 - .../oe-module-comlink-telehealth/CHANGELOG.md | 4 +- .../public/assets/js/src/at-slot.js | 2 +- .../public/assets/js/src/caller-slot.js | 2 +- .../public/assets/js/src/local-caller-slot.js | 2 +- .../assets/js/src/presentation-screen.js | 2 +- .../public/assets/js/src/video-bar-button.js | 2 +- .../public/assets/js/telehealth-calendar.js | 2 +- .../public/assets/js/telehealth-patient.js | 2 +- .../public/assets/js/telehealth-provider.js | 2 +- .../sql/table.sql | 2 +- .../admin/user_admin-extension.html.twig | 2 +- .../templates/comlink/conference-room.twig | 2 +- .../conference-room-main-layout.html.twig | 2 +- .../modal-invite-patient.html.twig | 2 +- .../room-participant-container.html.twig | 2 +- .../telehealth-invitation-new.text.twig | 1 - .../local-participant-container.html.twig | 2 +- .../templates/comlink/patient-portal.twig | 2 +- .../comlink/portal/thirdparty.html.twig | 2 +- .../telehealth-frontend-settings.js.twig | 2 +- .../templates/comlink/video-control-bar.twig | 2 +- .../comlink/waiting-room-patient.twig | 2 +- .../comlink/waiting-room-provider.twig | 2 +- .../email-message-fhir-access.html.twig | 2 +- .../email-message-fhir-access.text.twig | 2 +- .../partials/registration-code.html.twig | 2 +- .../portal/appointment-item.html.twig | 2 +- .../ModuleManagerListener.php | 16 +- .../oe-module-dashboard-context/info.txt | 1 - .../src/Bootstrap.php | 4 +- .../Services/DashboardContextAdminService.php | 36 +- .../src/Services/DashboardContextService.php | 2 +- .../custom_modules/oe-module-dorn/info.txt | 2 +- .../oe-module-faxsms/README-GUIDE.md | 22 +- .../oe-module-faxsms/README-SETUP.md | 2 +- .../custom_modules/oe-module-faxsms/README.md | 2 +- .../sql/add_fax_patient_columns.sql | 12 +- .../src/Controller/EtherFaxActions.php | 2 +- .../src/Controller/FaxDocumentService.php | 90 +- .../src/Controller/SignalWireClient.php | 64 +- .../public/deleter.php | 2 - .../custom_modules/oe-module-weno/LICENSE | 2 +- .../ajax/reporting_period_handler.php | 6 +- .../view/application/index/auto-suggest.phtml | 3 - .../view/application/index/index.phtml | 2 +- .../view/application/sendto/send.phtml | 8 +- .../module/Application/view/error/404.phtml | 2 +- .../module/Application/view/error/index.phtml | 2 +- .../carecoordination/index.phtml | 2 +- .../carecoordination/view.phtml | 2 +- .../encounterccdadispatch/autosend.phtml | 2 +- .../encounterccdadispatch/autosignoff.phtml | 2 +- .../encounterccdadispatch/index.phtml | 2 +- .../Carecoordination/view/layout/layout.phtml | 2 +- .../module/Ccr/view/ccr/ccr/view.phtml | 2 +- .../zend_modules/module/Documents/info.txt | 2 +- .../view/documents/documents/list.phtml | 2 +- .../view/documents/documents/retrieve.phtml | 2 +- .../module/Documents/view/layout/layout.phtml | 4 +- .../zend_modules/module/Multipledb/Readme.md | 8 +- .../view/multipledb/multipledb/edit.phtml | 2 +- .../multipledb/generatesafekey.phtml | 2 +- .../view/multipledb/multipledb/index.phtml | 1 - .../zend_modules/module/PatientFilter/README | 5 +- .../module/PatientFilter/acl/acl_setup.php | 1 - .../module/PatientFilter/info.txt | 2 +- .../module/Patientvalidation/Readme.md | 2 +- .../patientvalidation/index.phtml | 2 +- .../view/prescription-templates/default.phtml | 2 +- .../public/css/autosuggest/autosuggest.css | 136 +- .../zend_modules/public/css/bubbles.css | 34 +- .../zend_modules/public/css/bubbletip-IE.css | 1 - .../zend_modules/public/css/bubbletip.css | 1 - .../public/css/carecoordination_style.css | 12 +- .../modules/zend_modules/public/css/ccda.css | 34 +- .../modules/zend_modules/public/css/demo.css | 4 +- .../public/css/drag_and_drop_uploader.css | 10 +- .../zend_modules/public/css/easyui.css | 8 +- .../zend_modules/public/css/encounter.css | 7 +- .../modules/zend_modules/public/css/icon.css | 2 +- .../zend_modules/public/css/immunization.css | 18 +- .../public/css/jquery.contextMenu.css | 14 +- .../public/css/jquery.custom-scrollbar.css | 2 +- .../jquery.treeview-1.4.1/jquery.treeview.css | 14 +- .../rtl-treeview/jquery.treeview.rtl.css | 10 +- .../public/css/jquery.treeview.css | 14 +- .../zend_modules/public/css/mockjax.css | 5 +- .../public/css/multipledb/multipledb.css | 2 +- .../public/css/responsive-tables.css | 16 +- .../zend_modules/public/css/sendTo.css | 16 +- .../public/css/slider/css/slide.css | 1 - .../zend_modules/public/css/suggestion.css | 4 +- .../modules/zend_modules/public/js/acl/acl.js | 2 +- .../public/js/application/common.js | 2 - .../public/js/autosuggest/autosuggest.js | 3 - .../public/js/carecoordination/demo.js | 2 +- .../js/carecoordination/encounterManager.js | 2 +- .../public/js/scripts/cancercare.js | 2 +- .../public/js/scripts/file_uploader.js | 2 +- .../zend_modules/public/js/scripts/fixdate.js | 2 +- .../public/js/scripts/immunization.js | 9 - .../js/scripts/syndromicsurveillance.js | 2 +- interface/new/new_comprehensive_save.php | 1 - interface/orders/load_compendium.php | 1 - interface/orders/types.php | 1 - .../reminder/clinical_reminders.php | 1 - .../patient_file/summary/disclosure_full.php | 2 - interface/patient_file/summary/labdata.php | 1 - .../patient_tracker_status.php | 1 - interface/reports/background_services.php | 1 - interface/reports/direct_message_log.php | 1 - .../rules/www/css/cdr-multiselect/common.css | 506 +++---- .../css/cdr-multiselect/ui.multiselect.css | 276 ++-- interface/super/rules/www/js/detail.js | 2 +- .../rules/www/js/jQuery.fn.sortElements.js | 2 +- interface/super/rules/www/js/typeahead.js | 2 +- interface/themes/tabs_style_full.scss | 2 +- interface/usergroup/checkpwd_validation.js | 2 +- jest.config.js | 2 +- library/ESign/README | 8 +- library/ajax/get_preference_answers.php | 4 +- library/js/common.js | 1 - library/js/gSignIn.js | 16 +- library/js/oeUI/oeFileUploads.js | 2 +- library/js/reasonCodeWidget.js | 2 +- library/js/utility.js | 10 +- .../js/vendors/validate/validate_extend.js | 3 - library/templates/address_save_handler.php | 2 +- library/templates/relation_display.php | 2 +- library/templates/relation_form.php | 2 +- library/textformat.js | 1 - library/translation.inc.php | 14 +- .../sms_email_reminder/batch_reminders.php | 1 - modules/sms_email_reminder/readme.txt | 1 - phpunit.integration.xml | 2 +- portal/patient/.htaccess | 2 +- portal/patient/fwk/libs/.htaccess | 2 +- portal/patient/fwk/libs/savant/LICENSE.TXT | 2 +- portal/patient/scripts/app.js | 1 - .../scripts/app/onsiteactivityviews.js | 1 - .../scripts/app/onsiteportalactivities.js | 1 - public/smart-styles/smart-light.json | 2 +- sites/default/documents/edi/README.txt | 1 - sites/default/documents/era/README.txt | 1 - .../templates/Hipaa_Document_Oemr.tpl | 30 +- .../templates/Insurance_Info.tpl | 4 +- .../templates/Privacy_Document.tpl | 4 +- sites/default/documents/temp/README | 2 +- .../default/images/logos/core/favicon/README | 32 +- .../images/logos/core/menu/primary/README | 22 +- sql/2_6_0-to-2_6_1_upgrade.sql | 4 +- sql/2_7_2-to-2_7_3_upgrade.sql | 4 +- sql/2_8_1-to-2_8_2_upgrade.sql | 6 +- sql/2_9_0-to-3_0_0_upgrade.sql | 2 +- sql/3_0_1-to-3_1_0_upgrade.sql | 18 +- sql/3_1_0-to-3_2_0_upgrade.sql | 11 +- sql/3_2_0-to-4_0_0_upgrade.sql | 24 +- sql/4_0_0-to-4_1_0_upgrade.sql | 9 +- sql/4_1_0-to-4_1_1_upgrade.sql | 1 - sql/4_1_1-to-4_1_2_upgrade.sql | 12 +- sql/4_1_2-to-4_2_0_upgrade.sql | 16 +- sql/4_2_0-to-4_2_1_upgrade.sql | 60 +- sql/5_0_2-to-6_0_0_upgrade.sql | 1 - sql/6_0_0-to-6_1_0_upgrade.sql | 1 - sql/6_1_0-to-7_0_0_upgrade.sql | 2 +- sql/database_de_identification.sql | 76 +- sql/ins_lang_def_nl.sql | 3 +- sql/official_additional_users.sql | 2 +- src/Common/ORDataObject/ContactRelation.php | 8 +- src/Common/ORDataObject/Person.php | 10 +- src/Core/Traits/SingletonTrait.php | 1 - src/Cqm/Qdm/AdverseEvent.php | 1 - src/Cqm/Qdm/AllergyIntolerance.php | 1 - src/Cqm/Qdm/AssessmentOrder.php | 1 - src/Cqm/Qdm/AssessmentPerformed.php | 5 +- src/Cqm/Qdm/AssessmentRecommended.php | 1 - src/Cqm/Qdm/CareGoal.php | 3 +- src/Cqm/Qdm/CarePartner.php | 1 - src/Cqm/Qdm/CommunicationPerformed.php | 3 +- src/Cqm/Qdm/Component.php | 1 - src/Cqm/Qdm/DeviceApplied.php | 1 - src/Cqm/Qdm/DeviceOrder.php | 1 - src/Cqm/Qdm/DeviceRecommended.php | 1 - src/Cqm/Qdm/Diagnosis.php | 1 - src/Cqm/Qdm/DiagnosisComponent.php | 1 - src/Cqm/Qdm/DiagnosticStudyOrder.php | 1 - src/Cqm/Qdm/DiagnosticStudyPerformed.php | 5 +- src/Cqm/Qdm/DiagnosticStudyRecommended.php | 1 - src/Cqm/Qdm/EncounterOrder.php | 1 - src/Cqm/Qdm/EncounterPerformed.php | 7 +- src/Cqm/Qdm/EncounterRecommended.php | 1 - src/Cqm/Qdm/Entity.php | 1 - src/Cqm/Qdm/FacilityLocation.php | 1 - src/Cqm/Qdm/FamilyHistory.php | 1 - src/Cqm/Qdm/Identifier.php | 1 - src/Cqm/Qdm/ImmunizationAdministered.php | 1 - src/Cqm/Qdm/ImmunizationOrder.php | 1 - src/Cqm/Qdm/InterventionOrder.php | 1 - src/Cqm/Qdm/InterventionPerformed.php | 3 +- src/Cqm/Qdm/InterventionRecommended.php | 1 - src/Cqm/Qdm/LaboratoryTestOrder.php | 1 - src/Cqm/Qdm/LaboratoryTestPerformed.php | 5 +- src/Cqm/Qdm/LaboratoryTestRecommended.php | 1 - src/Cqm/Qdm/Location.php | 1 - src/Cqm/Qdm/MedicationActive.php | 1 - src/Cqm/Qdm/MedicationAdministered.php | 1 - src/Cqm/Qdm/MedicationDischarge.php | 1 - src/Cqm/Qdm/MedicationDispensed.php | 3 +- src/Cqm/Qdm/MedicationOrder.php | 3 +- src/Cqm/Qdm/NegativeAssessmentOrder.php | 1 - src/Cqm/Qdm/NegativeAssessmentPerformed.php | 1 - src/Cqm/Qdm/NegativeAssessmentRecommended.php | 1 - .../Qdm/NegativeCommunicationPerformed.php | 1 - src/Cqm/Qdm/NegativeDeviceApplied.php | 1 - src/Cqm/Qdm/NegativeDeviceOrder.php | 1 - src/Cqm/Qdm/NegativeDeviceRecommended.php | 1 - src/Cqm/Qdm/NegativeDiagnosticStudyOrder.php | 1 - .../Qdm/NegativeDiagnosticStudyPerformed.php | 1 - .../NegativeDiagnosticStudyRecommended.php | 1 - src/Cqm/Qdm/NegativeEncounterOrder.php | 1 - src/Cqm/Qdm/NegativeEncounterPerformed.php | 1 - src/Cqm/Qdm/NegativeEncounterRecommended.php | 1 - .../Qdm/NegativeImmunizationAdministered.php | 1 - src/Cqm/Qdm/NegativeImmunizationOrder.php | 1 - src/Cqm/Qdm/NegativeInterventionOrder.php | 1 - src/Cqm/Qdm/NegativeInterventionPerformed.php | 1 - .../Qdm/NegativeInterventionRecommended.php | 1 - src/Cqm/Qdm/NegativeLaboratoryTestOrder.php | 1 - .../Qdm/NegativeLaboratoryTestPerformed.php | 1 - .../Qdm/NegativeLaboratoryTestRecommended.php | 1 - .../Qdm/NegativeMedicationAdministered.php | 1 - src/Cqm/Qdm/NegativeMedicationDischarge.php | 1 - src/Cqm/Qdm/NegativeMedicationDispensed.php | 1 - src/Cqm/Qdm/NegativeMedicationOrder.php | 1 - src/Cqm/Qdm/NegativePhysicalExamOrder.php | 1 - src/Cqm/Qdm/NegativePhysicalExamPerformed.php | 1 - .../Qdm/NegativePhysicalExamRecommended.php | 1 - src/Cqm/Qdm/NegativeProcedureOrder.php | 1 - src/Cqm/Qdm/NegativeProcedurePerformed.php | 1 - src/Cqm/Qdm/NegativeProcedureRecommended.php | 1 - src/Cqm/Qdm/NegativeSubstanceAdministered.php | 1 - src/Cqm/Qdm/NegativeSubstanceOrder.php | 1 - src/Cqm/Qdm/NegativeSubstanceRecommended.php | 1 - src/Cqm/Qdm/Organization.php | 1 - src/Cqm/Qdm/Participation.php | 1 - src/Cqm/Qdm/Patient.php | 1 - src/Cqm/Qdm/PatientCareExperience.php | 1 - src/Cqm/Qdm/PatientCharacteristic.php | 1 - .../Qdm/PatientCharacteristicBirthdate.php | 1 - ...CharacteristicClinicalTrialParticipant.php | 1 - .../Qdm/PatientCharacteristicEthnicity.php | 1 - src/Cqm/Qdm/PatientCharacteristicExpired.php | 1 - src/Cqm/Qdm/PatientCharacteristicPayer.php | 1 - src/Cqm/Qdm/PatientCharacteristicRace.php | 1 - src/Cqm/Qdm/PatientCharacteristicSex.php | 1 - src/Cqm/Qdm/PatientEntity.php | 1 - src/Cqm/Qdm/PhysicalExamOrder.php | 1 - src/Cqm/Qdm/PhysicalExamPerformed.php | 5 +- src/Cqm/Qdm/PhysicalExamRecommended.php | 1 - src/Cqm/Qdm/PositiveAssessmentOrder.php | 1 - src/Cqm/Qdm/PositiveAssessmentPerformed.php | 1 - src/Cqm/Qdm/PositiveAssessmentRecommended.php | 1 - .../Qdm/PositiveCommunicationPerformed.php | 1 - src/Cqm/Qdm/PositiveDeviceApplied.php | 1 - src/Cqm/Qdm/PositiveDeviceOrder.php | 1 - src/Cqm/Qdm/PositiveDeviceRecommended.php | 1 - src/Cqm/Qdm/PositiveDiagnosticStudyOrder.php | 1 - .../Qdm/PositiveDiagnosticStudyPerformed.php | 1 - .../PositiveDiagnosticStudyRecommended.php | 1 - src/Cqm/Qdm/PositiveEncounterOrder.php | 1 - src/Cqm/Qdm/PositiveEncounterPerformed.php | 1 - src/Cqm/Qdm/PositiveEncounterRecommended.php | 1 - .../Qdm/PositiveImmunizationAdministered.php | 1 - src/Cqm/Qdm/PositiveImmunizationOrder.php | 1 - src/Cqm/Qdm/PositiveInterventionOrder.php | 1 - src/Cqm/Qdm/PositiveInterventionPerformed.php | 1 - .../Qdm/PositiveInterventionRecommended.php | 1 - src/Cqm/Qdm/PositiveLaboratoryTestOrder.php | 1 - .../Qdm/PositiveLaboratoryTestPerformed.php | 1 - .../Qdm/PositiveLaboratoryTestRecommended.php | 1 - .../Qdm/PositiveMedicationAdministered.php | 1 - src/Cqm/Qdm/PositiveMedicationDischarge.php | 1 - src/Cqm/Qdm/PositiveMedicationDispensed.php | 1 - src/Cqm/Qdm/PositiveMedicationOrder.php | 1 - src/Cqm/Qdm/PositivePhysicalExamOrder.php | 1 - src/Cqm/Qdm/PositivePhysicalExamPerformed.php | 1 - .../Qdm/PositivePhysicalExamRecommended.php | 1 - src/Cqm/Qdm/PositiveProcedureOrder.php | 1 - src/Cqm/Qdm/PositiveProcedurePerformed.php | 1 - src/Cqm/Qdm/PositiveProcedureRecommended.php | 1 - src/Cqm/Qdm/PositiveSubstanceAdministered.php | 1 - src/Cqm/Qdm/PositiveSubstanceOrder.php | 1 - src/Cqm/Qdm/PositiveSubstanceRecommended.php | 1 - src/Cqm/Qdm/Practitioner.php | 1 - src/Cqm/Qdm/ProcedureOrder.php | 1 - src/Cqm/Qdm/ProcedurePerformed.php | 5 +- src/Cqm/Qdm/ProcedureRecommended.php | 1 - src/Cqm/Qdm/ProviderCareExperience.php | 1 - src/Cqm/Qdm/QDMBaseType.php | 1 - src/Cqm/Qdm/RelatedPerson.php | 1 - src/Cqm/Qdm/ResultComponent.php | 1 - src/Cqm/Qdm/SubstanceAdministered.php | 1 - src/Cqm/Qdm/SubstanceOrder.php | 1 - src/Cqm/Qdm/SubstanceRecommended.php | 1 - src/Cqm/Qdm/Symptom.php | 1 - src/Cqm/hqmfOid_to_datatype_map.json | 2 +- .../CareExperiencePreferenceService.php | 6 +- src/Services/CarePlanService.php | 6 +- src/Services/ContactRelationService.php | 4 +- src/Services/PersonPatientLinkService.php | 78 +- .../ProcedureOrderRelationshipService.php | 26 +- .../Qrda/qrda-export/catI-r5/_code.mustache | 2 +- .../Qrda/qrda-export/catI-r5/_codes.mustache | 20 +- .../Qrda/qrda-export/catI-r5/_header.mustache | 56 +- .../catI-r5/_measure_section.mustache | 118 +- .../catI-r5/_reporting_period.mustache | 46 +- .../qrda-export/catI-r5/qrda1_r5.mustache | 426 +++--- .../catI-r5/qrda_header/_author.mustache | 52 +- .../catI-r5/qrda_header/_custodian.mustache | 86 +- .../_documentation_of_service_event.mustache | 176 +-- .../_information_recipient.mustache | 14 +- .../qrda_header/_legal_authenticator.mustache | 50 +- .../catI-r5/qrda_header/_participant.mustache | 14 +- .../qrda_header/_record_target.mustache | 118 +- .../qrda_templates/adverse_event.mustache | 92 +- .../allergy_intolerance.mustache | 84 +- .../qrda_templates/assessment_order.mustache | 62 +- .../assessment_performed.mustache | 90 +- .../assessment_recommended.mustache | 62 +- .../communication_performed.mustache | 124 +- .../qrda_templates/device_applied.mustache | 1 - .../qrda_templates/device_order.mustache | 86 +- .../device_recommended.mustache | 86 +- .../catI-r5/qrda_templates/diagnosis.mustache | 110 +- .../diagnostic_study_order.mustache | 62 +- .../diagnostic_study_performed.mustache | 106 +- .../diagnostic_study_recommended.mustache | 54 +- .../qrda_templates/encounter_order.mustache | 88 +- .../encounter_performed.mustache | 108 +- .../encounter_recommended.mustache | 84 +- .../qrda_templates/family_history.mustache | 86 +- .../immunization_administered.mustache | 100 +- .../immunization_order.mustache | 104 +- .../intervention_order.mustache | 60 +- .../intervention_performed.mustache | 78 +- .../intervention_recommended.mustache | 62 +- .../laboratory_test_order.mustache | 60 +- .../laboratory_test_performed.mustache | 98 +- .../laboratory_test_recommended.mustache | 62 +- .../qrda_templates/medication_active.mustache | 84 +- .../medication_administered.mustache | 102 +- .../medication_discharge.mustache | 142 +- .../medication_dispensed.mustache | 166 +-- .../qrda_templates/medication_order.mustache | 140 +- .../patient_care_experience.mustache | 40 +- ...ristic_clinical_trial_participant.mustache | 36 +- .../patient_characteristic_expired.mustache | 64 +- .../patient_characteristic_payer.mustache | 28 +- .../physical_exam_order.mustache | 72 +- .../physical_exam_performed.mustache | 112 +- .../physical_exam_recommended.mustache | 72 +- .../qrda_templates/procedure_order.mustache | 76 +- .../procedure_performed.mustache | 133 +- .../procedure_recommended.mustache | 79 +- .../program_participation.mustache | 42 +- .../provider_care_experience.mustache | 42 +- .../qrda_templates/related_person.mustache | 36 +- .../substance_recommended.mustache | 87 +- .../catI-r5/qrda_templates/symptom.mustache | 99 +- .../_admission_source.mustache | 12 +- .../_anatomical_location_site.mustache | 2 +- .../template_partials/_author.mustache | 58 +- .../_author_participation.mustache | 30 +- .../template_partials/_component.mustache | 26 +- .../_data_element_codes_as_values.mustache | 20 +- .../template_partials/_days_supplied.mustache | 12 +- .../_encounter_class.mustache | 12 +- .../_encounter_diagnosis_qdm.mustache | 48 +- .../template_partials/_entity.mustache | 24 +- .../_entity_care_partner.mustache | 22 +- .../_entity_location.mustache | 22 +- .../_entity_organization.mustache | 22 +- .../_entity_patient.mustache | 12 +- .../_entity_practitioner.mustache | 38 +- .../_facility_location.mustache | 48 +- .../_immunization_details.mustache | 28 +- .../_immunization_supply_request.mustache | 58 +- .../_interpretation.mustache | 2 +- .../_medication_details.mustache | 80 +- .../_medication_supply_request.mustache | 56 +- .../template_partials/_method.mustache | 2 +- .../template_partials/_ordinality.mustache | 2 +- .../template_partials/_rank.mustache | 14 +- .../_reaction_observation.mustache | 18 +- .../template_partials/_reason.mustache | 20 +- .../template_partials/_related_to.mustache | 12 +- .../template_partials/_results.mustache | 37 +- .../template_partials/_severity.mustache | 16 +- .../template_partials/_status.mustache | 16 +- .../_continuous_variable_value.mustache | 2 +- .../qrda-export/catIII/_measure_data.mustache | 2 +- .../catIII/_measure_section.mustache | 4 +- .../catIII/_reporting_period.mustache | 2 +- .../catIII/_stratification.mustache | 2 +- .../catIII/_supplemental_data.mustache | 2 +- .../Qrda/qrda-export/catIII/qrda3.mustache | 20 +- .../qrda-export/catIII/qrda3_r21.mustache | 4 +- .../catIII/qrda_header/_author.mustache | 2 +- .../catIII/qrda_header/_custodian.mustache | 2 +- .../_documentation_of_service_event.mustache | 2 +- .../_information_recipient.mustache | 2 +- .../qrda_header/_legal_authenticator.mustache | 2 +- .../qrda_header/_participant_ehr.mustache | 2 +- .../_participant_location.mustache | 2 +- .../Qrda/util/hqmf_template_oid_map.json | 1308 ++++++++--------- .../Qrda/util/hqmfr2_template_oid_map.json | 756 +++++----- .../Qrda/util/hqmfr2cql_template_oid_map.json | 780 +++++----- .../Qrda/util/qrdar5_1_template_oid_map.json | 812 +++++----- .../Qrda/util/qrdar5_template_oid_map.json | 812 +++++----- ...TreatmentInterventionPreferenceService.php | 6 +- src/Services/Utils/SQLUpgradeService.php | 2 +- .../cda/cda-validate-results.html.twig | 2 +- .../cda/cda-validate-results.json.twig | 2 +- templates/core/unauthorized.json.twig | 2 +- .../email-message-fhir-access.html.twig | 2 +- .../email-message-fhir-access.text.twig | 2 +- .../patient/portal_login/message.html.twig | 2 +- .../patient/portal_login/message.text.twig | 2 +- .../reset_credentials/message.html.twig | 2 +- .../reset_credentials/message.text.twig | 2 +- .../message-verify-failed.html.twig | 2 +- .../message-verify-failed.text.twig | 2 +- .../message-verify-success.html.twig | 2 +- .../message-verify-success.text.twig | 2 +- templates/error/400.html.twig | 2 +- templates/error/400.json.twig | 2 +- templates/error/404.html.twig | 2 +- templates/error/404.json.twig | 2 +- templates/error/general_http_error.json.twig | 2 +- templates/insurance_numbers/general_edit.html | 2 +- templates/nav/partials/navbar-nav.html.twig | 1 - templates/patient/card/rx.html.twig | 4 +- .../demographics/address_form.html.twig | 46 +- .../demographics/relation_form.html.twig | 14 +- .../relation_form_fields.html.twig | 3 +- .../demographics/telecom_display.html.twig | 2 +- .../demographics/telecom_form.html.twig | 40 +- .../patient/portal_login/print.html.twig | 2 +- templates/patient_finder/finder.html.twig | 2 +- .../reports/cqm/_results-table-body.html.twig | 2 +- .../cqm/_results-table-main-sub.html.twig | 2 +- .../cqm/_results-table-plans.html.twig | 2 +- .../_results-table-provider-group.html.twig | 2 +- .../cqm/_results-table-provider.html.twig | 2 +- .../cqm/_row-provider-display-name.html.twig | 2 +- ..._row-provider-group-display-name.html.twig | 2 +- .../reports/cqm/amc-full-report.html.twig | 2 +- .../cqm/amc-results-patient-details.html.twig | 2 +- templates/reports/cqm/cqm-form.html.twig | 2 +- .../reports/cqm/cqm-results-table.html.twig | 2 +- templates/reports/cqm/cqm.html.twig | 2 +- templates/reports/cqm/results-table.html.twig | 2 +- .../super/rules/base/template/redirect.php | 1 - templates/x12_partners/general_edit.html | 3 +- tests/Tests/ECQM/measure_result_map.csv | 2 - .../ECQM/test_patient_qrda/BH Adult_2.xml | 10 +- tests/Tests/Fixtures/FHIR/patients.json | 24 +- .../ReminderIntervalDetailTest.php | 6 +- .../Unit/Common/Forms/FormLocatorTest.php | 38 +- .../questionnaire-sdc-pathology.json | 696 ++++----- .../Questionnaire-phq-9-example.json | 2 +- .../QuestionnaireResponse-phq-9-example.json | 2 +- 621 files changed, 7153 insertions(+), 7394 deletions(-) create mode 100644 .github/workflows/whitespace.yml diff --git a/.dclintrc.yaml b/.dclintrc.yaml index fa2f246d9652..530b0ed9852b 100644 --- a/.dclintrc.yaml +++ b/.dclintrc.yaml @@ -10,7 +10,7 @@ rules: service-image-require-explicit-tag: 0 no-unbound-port-interfaces: 0 require-quotes-in-ports: 0 - + # Alphabetical ordering rules are kept as warnings services-alphabetical-order: 1 service-ports-alphabetical-order: 1 diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index e8398c862886..94248ab122fa 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -11,4 +11,4 @@ issuehunt: # Replace with a single IssueHunt username otechie: # Replace with a single Otechie username custom: ["https://www.open-emr.org/donate/"] #bitcoin: 3GCNLbiZmHP26fA77NkLgY4tKdEts3ADQg -#ethereum: 0xcD7542b2DcF41072aC7783C7cbc31B0f1E257E80 \ No newline at end of file +#ethereum: 0xcD7542b2DcF41072aC7783C7cbc31B0f1E257E80 diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 5068553ba7cd..e87fbe8c1149 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -30,5 +30,3 @@ Steps to reproduce the behavior: - - diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 92a3b521627e..e1915120f47a 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,4 @@ - diff --git a/.github/workflows/docker-compose-lint.yml b/.github/workflows/docker-compose-lint.yml index 3b3bc7068a8c..b322dc3e8b00 100644 --- a/.github/workflows/docker-compose-lint.yml +++ b/.github/workflows/docker-compose-lint.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v6 - + - name: Get changed docker compose files id: changed-files continue-on-error: true @@ -35,12 +35,12 @@ jobs: **/*compose*.yaml files_ignore: | .github/** - + - name: Determine files to check id: files-to-check run: | set -x - + # If the changed-files step failed or returned empty, # use find to locate all docker compose files in the repo. if [[ "${{ steps.changed-files.outcome }}" = success && "${{ steps.changed-files.outputs.any_changed }}" = true ]]; then @@ -53,7 +53,7 @@ jobs: # Use recursive mode in dclint to find all compose files echo "mode=recursive" >> "$GITHUB_OUTPUT" fi - + - name: Run dclint on changed files if: steps.files-to-check.outputs.mode == 'files' run: | diff --git a/.github/workflows/hadolint.yml b/.github/workflows/hadolint.yml index a6d0acbca8b6..7598fa54eb6f 100644 --- a/.github/workflows/hadolint.yml +++ b/.github/workflows/hadolint.yml @@ -32,7 +32,7 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v6 - + - name: Get changed Dockerfile files id: changed-files # We run hadolint on all Dockerfiles in the repo @@ -43,7 +43,7 @@ jobs: with: files: | **/Dockerfile* - + - name: Run hadolint on changed files if: ${{ steps.changed-files.outcome == 'success' && steps.changed-files.outputs.any_changed == 'true' }} env: @@ -52,14 +52,14 @@ jobs: # Safely handle changed files list using environment variable # Convert space-separated list to newline-separated for safe parsing mapfile -t files < <(echo "$CHANGED_FILES" | tr ' ' '\n') - + echo "Linting ${#files[@]} changed Dockerfile(s)..." for file in "${files[@]}"; do [[ -n "$file" ]] || continue echo "Checking: $file" docker run --rm -i -v "$(pwd)/.hadolint.yaml:/.config/hadolint.yaml" hadolint/hadolint < "$file" done - + - name: Run hadolint on all files if: ${{ steps.changed-files.outcome != 'success' || steps.changed-files.outputs.any_changed != 'true' }} run: | diff --git a/.github/workflows/whitespace.yml b/.github/workflows/whitespace.yml new file mode 100644 index 000000000000..43f39e1e7580 --- /dev/null +++ b/.github/workflows/whitespace.yml @@ -0,0 +1,49 @@ +name: Whitespace + +on: + push: + branches: + - master + - rel-* + pull_request: + branches: + - master + - rel-* + +permissions: + contents: read + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name == 'pull_request' && github.event.number || github.run_id }} + cancel-in-progress: ${{ github.event_name == 'pull_request' }} + +jobs: + + whitespace: + runs-on: ubuntu-24.04 + name: Check whitespace + steps: + - name: Checkout code + uses: actions/checkout@v6 + - name: Install Python + uses: actions/setup-python@v5 + with: + python-version: '3.12' + - name: Install pre-commit + run: pip install pre-commit + - name: Get changed files (PR only) + if: github.event_name == 'pull_request' + id: changed-files + uses: tj-actions/changed-files@v47 + - name: Run whitespace hooks (PR - changed files only) + if: github.event_name == 'pull_request' && steps.changed-files.outputs.any_changed == 'true' + run: | + pre-commit run trailing-whitespace --files ${{ steps.changed-files.outputs.all_changed_files }} + pre-commit run end-of-file-fixer --files ${{ steps.changed-files.outputs.all_changed_files }} + pre-commit run mixed-line-ending --files ${{ steps.changed-files.outputs.all_changed_files }} + - name: Run whitespace hooks (push - all files) + if: github.event_name == 'push' + run: | + pre-commit run --all-files trailing-whitespace + pre-commit run --all-files end-of-file-fixer + pre-commit run --all-files mixed-line-ending diff --git a/.hadolint.yaml b/.hadolint.yaml index 3a93346739d5..0e9785cc08e0 100644 --- a/.hadolint.yaml +++ b/.hadolint.yaml @@ -6,35 +6,35 @@ ignored: # DL3003: Use WORKDIR to switch to a directory # Many of our existing Dockerfiles use cd in RUN commands for complex build processes - DL3003 - + # DL3006: Always tag the version of an image explicitly # Some base images (osixia/openldap, nginx) are intentionally using latest - DL3006 - + # DL3008: Pin versions in apt-get install # Pinning apt versions can make maintenance difficult and break builds - DL3008 - + # DL3009: Delete the apt lists after installing something # Some Dockerfiles deliberately keep apt lists for development purposes - DL3009 - + # DL3015: Avoid additional packages by specifying --no-install-recommends # Some builds intentionally include recommended packages - DL3015 - + # DL4006: Set the SHELL option -o pipefail before RUN with a pipe # Adding pipefail to all existing RUN commands would be intrusive - DL4006 - + # SC2086: Double quote to prevent globbing and word splitting # Many existing scripts use intentional word splitting - SC2086 - + # SC2046: Quote this to prevent word splitting # Many existing scripts use intentional word splitting - SC2046 - + # DL3020: Use COPY instead of ADD for files and folders # Some existing Dockerfiles use ADD for local files - DL3020 diff --git a/.phpstan/MIGRATION_GUIDE.md b/.phpstan/MIGRATION_GUIDE.md index a0eaf10ccb12..46179f020ae3 100644 --- a/.phpstan/MIGRATION_GUIDE.md +++ b/.phpstan/MIGRATION_GUIDE.md @@ -82,12 +82,12 @@ use OpenEMR\Core\OEGlobalsBag; class MyService { private OEGlobalsBag $globals; - + public function __construct(OEGlobalsBag $globals) { $this->globals = $globals; } - + public function doSomething(): void { $setting = $this->globals->get('some_setting'); @@ -209,7 +209,7 @@ class MyServiceTest extends TestCase 'some_setting' => 'test value', 'timeout' => 60 ]); - + $service = new MyService($testGlobals); // Test your service } diff --git a/.phpstan/MIGRATION_GUIDE_CURL.md b/.phpstan/MIGRATION_GUIDE_CURL.md index 7052c65d3c73..6d764844d8f0 100644 --- a/.phpstan/MIGRATION_GUIDE_CURL.md +++ b/.phpstan/MIGRATION_GUIDE_CURL.md @@ -79,7 +79,7 @@ try { $response = $client->request('POST', 'https://api.example.com/endpoint', [ 'json' => $data // Automatically sets Content-Type and encodes JSON ]); - + $result = json_decode($response->getBody()->getContents(), true); } catch (GuzzleException $e) { error_log("HTTP Error: " . $e->getMessage()); @@ -163,7 +163,7 @@ try { 'Authorization' => 'Bearer ' . $token ] ]); - + $data = json_decode($response->getBody()->getContents(), true); } catch (\Exception $e) { error_log("HTTP request failed: " . $e->getMessage()); diff --git a/.phpstan/README.md b/.phpstan/README.md index 81d87ffb3acd..47524db0f2ad 100644 --- a/.phpstan/README.md +++ b/.phpstan/README.md @@ -191,7 +191,7 @@ try { 'Authorization' => 'Bearer token' ] ]); - + $data = json_decode($response->getBody()->getContents(), true); } catch (GuzzleException $e) { // handle error with proper exception diff --git a/API_README.md b/API_README.md index 453f69f6d715..48c468ab7a0b 100644 --- a/API_README.md +++ b/API_README.md @@ -395,4 +395,3 @@ OpenEMR is an open-source project. To contribute to this documentation: **Last Updated:** November 2025 **License:** GPL v3 - diff --git a/Documentation/Direct_Messaging_README.txt b/Documentation/Direct_Messaging_README.txt index 09e9bba4892c..df066900ed7d 100644 --- a/Documentation/Direct_Messaging_README.txt +++ b/Documentation/Direct_Messaging_README.txt @@ -1,74 +1,74 @@ Direct Messaging with OpenEMR and EMR Direct phiMail(R) Version 1.3, 19 Jul 2014 -A. Purpose: To provide a secure method from within OpenEMR for sending/receiving -protected health information to/from another Direct address using the Direct Project -messaging standard, as a step toward the goal of satisfying the three MU2 criteria -requiring the use of Direct messaging. (For general information about Direct messaging, +A. Purpose: To provide a secure method from within OpenEMR for sending/receiving +protected health information to/from another Direct address using the Direct Project +messaging standard, as a step toward the goal of satisfying the three MU2 criteria +requiring the use of Direct messaging. (For general information about Direct messaging, see http://www.emrdirect.com/about-directed-exchange-and-secure-direct-messaging.html) -B. IMPORTANT: Please be aware of the following limitations when using the OpenEMR +B. IMPORTANT: Please be aware of the following limitations when using the OpenEMR Direct Messaging features with PHI in a production environment: -1. the current code only supports a single shared "group" Direct Address for each OpenEMR -installation. Note that this model is fully compliant with the Direct Project -requirements for Direct messaging, but we may add additional models in the future -should we determine that doing so would provide a higher degree of interoperability for +1. the current code only supports a single shared "group" Direct Address for each OpenEMR +installation. Note that this model is fully compliant with the Direct Project +requirements for Direct messaging, but we may add additional models in the future +should we determine that doing so would provide a higher degree of interoperability for OpenEMR users. -2. the current code only sends the CCR or CCD XML data that is already available in OpenEMR; -these files as currently generated by existing OpenEMR code do not meet the requirements +2. the current code only sends the CCR or CCD XML data that is already available in OpenEMR; +these files as currently generated by existing OpenEMR code do not meet the requirements of the MU2 criteria, and the current CCD files do not pass strict CDA validation tests. C. Problems Solved: -1. Patient-initiated transmission of clinical data from the Report section of the Patient +1. Patient-initiated transmission of clinical data from the Report section of the Patient Portal interface. -2. Provider-initiated transmission of clinical data from the Report section of the Patient +2. Provider-initiated transmission of clinical data from the Report section of the Patient pane in the main OpenEMR interface. -3. Log all data transmissions including date/time, patient, and whether transmission -was initiated by the patient through the Patient Portal or by an OpenEMR user through the +3. Log all data transmissions including date/time, patient, and whether transmission +was initiated by the patient through the Patient Portal or by an OpenEMR user through the main interface. 4. Receive Direct messages from other sources. D. How it Works: Once configured, OpenEMR will interface with a phiMail Direct messaging server to complete the -required message transactions. The phiMail platform is described on the EMR Direct website, +required message transactions. The phiMail platform is described on the EMR Direct website, http://www.emrdirect.com and http://www.emrdirect.com/phimail-faq.html. E. What you need before enabling Direct Messaging in OpenEMR: -1. Test Mode: Developers may request a complimentary test address at -https://www.emrdirect.com/subscribe-developer +1. Test Mode: Developers may request a complimentary test address at +https://www.emrdirect.com/subscribe-developer Access to a sandbox server is available for testing and development purposes. -2. Production Mode: Healthcare provider users should begin by signing up for a production +2. Production Mode: Healthcare provider users should begin by signing up for a production Direct messaging account with EMR Direct by registering at https://www.emrdirect.com/subscribe -Subscribers will receive the username, password, and server address information with which to -configure OpenEMR. +Subscribers will receive the username, password, and server address information with which to +configure OpenEMR. F. How to enable the Direct Messaging Features in OpenEMR: -Setup of phiMail Direct messaging Service is done in the Administration::Globals::Connectors +Setup of phiMail Direct messaging Service is done in the Administration::Globals::Connectors tab 1. Check the "Enable phiMail Direct Messaging Service" checkbox. 2. Enter the Server Address, Username, and Password provided to you. The server address will be of the form "ssl://servername.example.com:32541" - replace the hostname and port -with the values provided to you by EMR Direct. The Username is your Direct Address. Do not +with the values provided to you by EMR Direct. The Username is your Direct Address. Do not enter the server URL into your browser address bar, as this will not work. -3. Specify the OpenEMR user who will receive notification of new incoming Direct messages. +3. Specify the OpenEMR user who will receive notification of new incoming Direct messages. Enter their OpenEMR username in the notification user field. 4. Specify the interval for automatic message checking; we suggest 5 or 10 minutes as a -starting point, but installations processing a large number of Direct messages may want a +starting point, but installations processing a large number of Direct messages may want a shorter interval. To disable automatic message checking through OpenEMR's background service -manager, set the interval to 0 (zero). Disabling automatic checking would be appropriate +manager, set the interval to 0 (zero). Disabling automatic checking would be appropriate if message checking is managed through another mechanism, such as a system cron job. 5. Optionally check "phiMail Allow CCD Send" and/or "phiMail Allow CCR Send" to enable @@ -80,26 +80,26 @@ OpenEMR will operate in a receive-only mode. 7. Confirm that a valid Notification Email Address is set in the Administration:: Globals::Notifications tab to receive error notifications from the Direct Messaging service. -8. Install the EMR Direct trust anchor certificate. +8. Install the EMR Direct trust anchor certificate. -Note: This is *not* your Direct certificate; it is the trust anchor for the SSL -certificate issued to our servers, and is used only to validate the SSL certificate +Note: This is *not* your Direct certificate; it is the trust anchor for the SSL +certificate issued to our servers, and is used only to validate the SSL certificate presented by the phiMail server on the other side of OpenEMR's connection. Your Direct private key and certificate are managed by the phiMail Server and are not installed in OpenEMR. Your Direct certificate is made available for your review by EMR Direct, but you will not need to install it anywhere. -For added security, the trust anchor for the phiMail Server should be installed in the OpenEMR +For added security, the trust anchor for the phiMail Server should be installed in the OpenEMR installation tree at: [installation_root]/sites/[site_id]/documents/phimail_server_pem/phimail_server.pem This phimail_server_pem directory and its contents should be readable by the -webserver process, but only writable by trusted local users. The certificate file -itself must be PEM encoded. You can identify a PEM encoded certificate file because -it begins with the text "-----BEGIN CERTIFICATE-----". Although OpenEMR will connect -to phiMail servers without installing this certificate, this is a required configuration -step for all production accounts to ensure that you are connecting to the correct +webserver process, but only writable by trusted local users. The certificate file +itself must be PEM encoded. You can identify a PEM encoded certificate file because +it begins with the text "-----BEGIN CERTIFICATE-----". Although OpenEMR will connect +to phiMail servers without installing this certificate, this is a required configuration +step for all production accounts to ensure that you are connecting to the correct server. You can obtain the correct certificate at the following URLs: a. Test accounts: http://certs.emrdirect.com/EMRDirectTestCA.crt @@ -124,50 +124,50 @@ entries, each entry will also contain an error code: C1: phiMail is disabled in the global configuration. Fix: enable. C2: the phiMail server URL entered in the global configuration is invalid. Fix: Confirm - the URL has been entered correctly. It should be of the form + the URL has been entered correctly. It should be of the form "ssl://server.example.com:32541". - C3: unable to create stream context. Fix: Usually this is because the server certificate + C3: unable to create stream context. Fix: Usually this is because the server certificate file installed in F.8 above is not the correct certificate or is in the wrong format. C4: failed to open connection. Fix: Confirm you Internet service and local DNS servers are online and your firewall is not blocking connections to the phiMail Server. H. Checking the status and history of the Direct Messaging Service in OpenEMR: -Administrators may view the status of the service by Selecting Reports::Services::Background -Services from the main OpenEMR left navigation bar. The "View Log" link on this page or -Reports::Services::Direct Message Log will open the messaging history log showing each message -sent or received and the current status of that message (Received, Sent, Delivery Confirmed, +Administrators may view the status of the service by Selecting Reports::Services::Background +Services from the main OpenEMR left navigation bar. The "View Log" link on this page or +Reports::Services::Direct Message Log will open the messaging history log showing each message +sent or received and the current status of that message (Received, Sent, Delivery Confirmed, or Failed). I. Note of message status messages: Receiving message status updates requires that Direct message -checking be enabled. When receiving messages, the phiMail back-end is fully compliant with the -Direct messaging protocols to notify the sender and provide final delivery confirmation, but -please note that many other Direct providers do not yet support these features. If a message -is sent to a recipient using one of these other systems, OpenEMR probably won't ever receive a +checking be enabled. When receiving messages, the phiMail back-end is fully compliant with the +Direct messaging protocols to notify the sender and provide final delivery confirmation, but +please note that many other Direct providers do not yet support these features. If a message +is sent to a recipient using one of these other systems, OpenEMR probably won't ever receive a final delivery confirmation for that message. J. How to use the Direct Messaging Features in OpenEMR: 1. Sending: When the phiMail Direct Messaging service is enabled, an additional "Transmit" button will -appear in the Continuity of Care Record (CCR) and/or Continuity of Care Document (CCD) block -of the Reports section in both the Patient Portal and the Patient pane of the main provider -interface. +appear in the Continuity of Care Record (CCR) and/or Continuity of Care Document (CCD) block +of the Reports section in both the Patient Portal and the Patient pane of the main provider +interface. -To transmit a CCR or CCD, first click the "Transmit" button. This will open a small dialog -immediately below the button with a form field to enter the intended recipient's Direct Address. +To transmit a CCR or CCD, first click the "Transmit" button. This will open a small dialog +immediately below the button with a form field to enter the intended recipient's Direct Address. Clicking "Transmit" again will hide the dialog. -A Direct Address should have the same form as a regular email address, e.g. -jonesclinic@direct.example.com. Enter the address in the field and click the "Send" button +A Direct Address should have the same form as a regular email address, e.g. +jonesclinic@direct.example.com. Enter the address in the field and click the "Send" button immediately to the right of the field. Only a single recipient may be specified in the field. -The Send button will be temporarily disabled while OpenEMR is communicating with the phiMail -server. This will only work for properly-configured Direct addresses. Attempts to send to a +The Send button will be temporarily disabled while OpenEMR is communicating with the phiMail +server. This will only work for properly-configured Direct addresses. Attempts to send to a regular email address or Direct address outside of our test mode "trust sandbox" will fail during testing. Production accounts have wide interoperability with other Direct service providers. Should you encounter a trust community with which OpenEMR does not interoperate, please let us know at support@emrdirect.com. -OpenEMR will then display a status message immediately below the Address field, the +OpenEMR will then display a status message immediately below the Address field, the success or failure of the message transmission, or an error message. If the message is successfully submitted to the server, the Address field will be cleared to prevent accidental re-transmission. If multiple recipients are required, the next recipient can now be entered. @@ -185,33 +185,32 @@ beginning with "EC" are listed here: EC 8: problem sending the clinical document. Fix: see EC 6. 2. Receiving: -When the phiMail Direct Messaging service is enabled, and message checking is enabled either -through the background services manager of another mechanism, OpenEMR will automatically process -message status updates and new messages. Status updates will be reflected immediately in the -Direct Messaging log. Additionally, if a "Failed" notification is received for a previously sent -message, a regular email message will be generated to the Notification Email Address specified +When the phiMail Direct Messaging service is enabled, and message checking is enabled either +through the background services manager of another mechanism, OpenEMR will automatically process +message status updates and new messages. Status updates will be reflected immediately in the +Direct Messaging log. Additionally, if a "Failed" notification is received for a previously sent +message, a regular email message will be generated to the Notification Email Address specified in the Notifications tab of the Global Settings panel (accessed by selecting Administration:: Globals from the main left navigation menu). -New Direct messages will be processed as follows. A new "Patient Note" will be generated and -sent to the phiMail notification user specified in the Connectors tab of the Global settings. -The patient note will contain information about the message, including any text at the beginning -of the message from the sender. Any attachments (and any non-text content) will be automatically -converted to separate OpenEMR Documents, which will be referenced in the new Patient Note. -The Documents and the Patient Note are initially created without an assigned patient. +New Direct messages will be processed as follows. A new "Patient Note" will be generated and +sent to the phiMail notification user specified in the Connectors tab of the Global settings. +The patient note will contain information about the message, including any text at the beginning +of the message from the sender. Any attachments (and any non-text content) will be automatically +converted to separate OpenEMR Documents, which will be referenced in the new Patient Note. +The Documents and the Patient Note are initially created without an assigned patient. At this time, the envisioned workflow is that the notification user will review the message text -and any included Documents to determine which patient the content belongs to and will then set the -patient using the existing Patient Note interface for choosing a patient. Once the patient is sent, -the Patient Note can be forwarded to another provider or staff member as appropriate using the -existing forwarding mechanism for Patient Notes. The unassigned Documents can be viewed by Selecting -Miscellaneous::New Documents from the main left navigation menu, which opens a Documents list. Once -the specified document is opened, the user can optionally categorize the document and, when -appropriate, assign the document to a specific patient using the "Move to Patient #" feature in the +and any included Documents to determine which patient the content belongs to and will then set the +patient using the existing Patient Note interface for choosing a patient. Once the patient is sent, +the Patient Note can be forwarded to another provider or staff member as appropriate using the +existing forwarding mechanism for Patient Notes. The unassigned Documents can be viewed by Selecting +Miscellaneous::New Documents from the main left navigation menu, which opens a Documents list. Once +the specified document is opened, the user can optionally categorize the document and, when +appropriate, assign the document to a specific patient using the "Move to Patient #" feature in the Documents interface. Trademark Notice: phiMail is a registered trademark of EMR Direct. Copyright (c) 2013-2014 EMR Direct. - diff --git a/Documentation/Emergency_User_README.txt b/Documentation/Emergency_User_README.txt index 1cf4c6b7121e..39721edd8713 100644 --- a/Documentation/Emergency_User_README.txt +++ b/Documentation/Emergency_User_README.txt @@ -1,6 +1,6 @@ Purpose of Emergency Login: -------------------------- -Break glass refers to a quick means for a person who does not have access privileges to certain information to gain access during emergency. Following factors should be considered for break glass users: +Break glass refers to a quick means for a person who does not have access privileges to certain information to gain access during emergency. Following factors should be considered for break glass users: 1. Emergency Accounts should be created in advance. 2. Username should meaningful, such as breakglass01/emergency01 with strong password. @@ -19,7 +19,6 @@ Emergency Login acl can be assigned to the users in the following screens:- Emergency User should be de-activated initally. Activate the Emergency User only during emergency situations. Emergency Login username should start with "breakglass" or "emergency". -When Emergency User is activated, a notication mail is sent to the email-id configured in $GLOBALS['Emergency_Login_email_id'] +When Emergency User is activated, a notication mail is sent to the email-id configured in $GLOBALS['Emergency_Login_email_id'] Emergency Login Activation mail will be sent only if "$GLOBALS['Emergency_Login_email']" and "$GLOBALS['Emergency_Login_email_id']" is configured in globals.php - diff --git a/Documentation/README-Log-Backup.txt b/Documentation/README-Log-Backup.txt index a63f4b9b7159..15a3f17ce769 100644 --- a/Documentation/README-Log-Backup.txt +++ b/Documentation/README-Log-Backup.txt @@ -13,4 +13,3 @@ Use the following in the crontab: 0 0 * * 0 php [webserver_root]/interface/main/backuplog.php webserver_root backup_log_dir **** Eg. 0 0 * * 0 php /home/openemr/interface/main/backuplog.php /home/openemr /opt - diff --git a/Documentation/SystemArchitecture.txt b/Documentation/SystemArchitecture.txt index d7df26632297..c0d976a54779 100644 --- a/Documentation/SystemArchitecture.txt +++ b/Documentation/SystemArchitecture.txt @@ -1,3 +1,2 @@ The OpenEMR System Architecture Description page can be found here: http://open-emr.org/wiki/index.php/OpenEMR_System_Architecture - diff --git a/Documentation/de_identification_readme.txt b/Documentation/de_identification_readme.txt index 5fa0b0406162..043a3cf44b1d 100644 --- a/Documentation/de_identification_readme.txt +++ b/Documentation/de_identification_readme.txt @@ -9,9 +9,9 @@ 4.Set de_identification_config variable to 1 ([OPENEMR]/contrib/util/de_identification_upgrade.php) and run de_identification_upgrade.php to create procedures, functions, tables needed for de-identification -(administration -> De identification -> click here to run de_identification_upgrade.php - for first time) +(administration -> De identification -> click here to run de_identification_upgrade.php - for first time) or http://HOSTNAME:PORT_NUMBER/contrib/util/de_identification_upgrade.php -(eg: http://vicareplus.com:3000/contrib/util/de_identification_upgrade.php). +(eg: http://vicareplus.com:3000/contrib/util/de_identification_upgrade.php). Mysql root user and password is required for successful execution of the upgrade script 5.Please restart the apache server before playing with de-identification and set de_identification_config variable back to zero @@ -20,13 +20,13 @@ Mysql root user and password is required for successful execution of the upgrade (administration -> De identification) by providing the inputs to de-identification process 7.Visit de-identification screen after some time, click download button to download the de-identified data -(De-identification files will be saved in '\tmp' location of the openemr machine and may contain sensitive data, +(De-identification files will be saved in '\tmp' location of the openemr machine and may contain sensitive data, so it is recommended to manually delete the files after its use) 8.For re-identification, provide re-identification code as input and click download button to download the re-identified data -(Re-identification files will be saved in '\tmp' location of the openemr machine and may contain sensitive data, +(Re-identification files will be saved in '\tmp' location of the openemr machine and may contain sensitive data, so it is recommended to manually delete the files after its use) -9.When current de-identification process got hang in between, run following query in backend -"update de_identification_status set status = 0;" , so as to start new de-identification process. +9.When current de-identification process got hang in between, run following query in backend +"update de_identification_status set status = 0;" , so as to start new de-identification process. For case of re-identification, run the following query "update re_identification_status set status = 0;" diff --git a/Documentation/privileged_db/example_user_permissions.sql b/Documentation/privileged_db/example_user_permissions.sql index b49a43ec35d3..a3f329308562 100644 --- a/Documentation/privileged_db/example_user_permissions.sql +++ b/Documentation/privileged_db/example_user_permissions.sql @@ -163,4 +163,4 @@ GRANT ALL ON openemr.users to 'openemr'@'localhost'; GRANT ALL ON openemr.users_facility to 'openemr'@'localhost'; GRANT ALL ON openemr.version to 'openemr'@'localhost'; - GRANT ALL ON openemr.x12_partners to 'openemr'@'localhost'; \ No newline at end of file + GRANT ALL ON openemr.x12_partners to 'openemr'@'localhost'; diff --git a/Documentation/privileged_db/generate_table_permissions_script.sql b/Documentation/privileged_db/generate_table_permissions_script.sql index f1bd40ddb21b..e76e2fe939a9 100644 --- a/Documentation/privileged_db/generate_table_permissions_script.sql +++ b/Documentation/privileged_db/generate_table_permissions_script.sql @@ -1,3 +1,3 @@ SELECT CONCAT('GRANT ALL ON ', 'openemr.',TABLE_NAME, ' to ''openemr''@''localhost'';') FROM INFORMATION_SCHEMA.TABLES -WHERE TABLE_SCHEMA = 'openemr' and NOT TABLE_NAME='users_secure'; \ No newline at end of file +WHERE TABLE_SCHEMA = 'openemr' and NOT TABLE_NAME='users_secure'; diff --git a/Documentation/privileged_db/priv_db_HOWTO.txt b/Documentation/privileged_db/priv_db_HOWTO.txt index 4b26ed15ee52..9de2375e3588 100644 --- a/Documentation/privileged_db/priv_db_HOWTO.txt +++ b/Documentation/privileged_db/priv_db_HOWTO.txt @@ -6,12 +6,12 @@ After creating a privileged user and revoking permissions for the default user, It is not recommended that you make this change unless you are comfortable with MySQL administration. In addition, the 'openemr' user no longer has full permissions, so when patching/upgrading the .SQL schema, the user defined in sites/sqlconf.php will need to be modified to use a more privileged account (e.g. root, or a “secure” whose creation is being described below.). -Configuration of the privileged user should not be done with phpMyAdmin and is best done with a tool such a MySQL Workbench or with the mysql command-line tool with root db access. This is because you would be trying to change the permissions of the account phpMyAdmin is logged in with and are likely to encounter problem as a result. +Configuration of the privileged user should not be done with phpMyAdmin and is best done with a tool such a MySQL Workbench or with the mysql command-line tool with root db access. This is because you would be trying to change the permissions of the account phpMyAdmin is logged in with and are likely to encounter problem as a result. In this description “openemr” is the MySQL username and 'secure' is the login to be created that has “full permissions.” -Manage the Database Users - an example script is provided in:Documentation/privileged_db/example_user_permissions” +Manage the Database Users + an example script is provided in:Documentation/privileged_db/example_user_permissions” 1. Revoke “ALL” privileges for “openemr” by executing this command revoke all on openemr.* FROM 'openemr'@'localhost'; 2. Explicitly grant permissions to each table individually by executing statements like this: @@ -30,4 +30,4 @@ Update the OpenEMR files 2. see example in Documentation/privileged_db/secure_sqlconf.php for reference If you are having problems and want to “revert” delete the secure_sqlconf.php file and execute - GRANT ALL on openemr.* to 'openemr'@'localhost' \ No newline at end of file + GRANT ALL on openemr.* to 'openemr'@'localhost' diff --git a/acknowledge_license_cert.html b/acknowledge_license_cert.html index 03700658b611..860c0e5e358b 100644 --- a/acknowledge_license_cert.html +++ b/acknowledge_license_cert.html @@ -490,4 +490,3 @@

Healthcare Disclaimer

- diff --git a/bin/command-runner b/bin/command-runner index e9972936a0c7..442a603ad237 100755 --- a/bin/command-runner +++ b/bin/command-runner @@ -23,4 +23,4 @@ if (php_sapi_name() !== 'cli') { $commandRunner = new CommandRunner($rootPath, pathinfo(__FILE__, PATHINFO_FILENAME)); $commandRunner->run(); -exit; \ No newline at end of file +exit; diff --git a/ccdaservice/oe-blue-button-generate/LICENSE b/ccdaservice/oe-blue-button-generate/LICENSE index 381fc782ea1f..c4154bc408a4 100644 --- a/ccdaservice/oe-blue-button-generate/LICENSE +++ b/ccdaservice/oe-blue-button-generate/LICENSE @@ -199,4 +199,3 @@ Apache License WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - diff --git a/ccdaservice/oe-blue-button-generate/lib/entryLevel/socialHistoryEntryLevel.js b/ccdaservice/oe-blue-button-generate/lib/entryLevel/socialHistoryEntryLevel.js index 5daaf09d015d..e2c34b4e7307 100644 --- a/ccdaservice/oe-blue-button-generate/lib/entryLevel/socialHistoryEntryLevel.js +++ b/ccdaservice/oe-blue-button-generate/lib/entryLevel/socialHistoryEntryLevel.js @@ -813,5 +813,3 @@ exports.sexObservation = { ); } }; - - diff --git a/ccdaservice/oe-blue-button-generate/lib/fieldLevel.js b/ccdaservice/oe-blue-button-generate/lib/fieldLevel.js index 3db33b6b6be1..4872730ea01d 100644 --- a/ccdaservice/oe-blue-button-generate/lib/fieldLevel.js +++ b/ccdaservice/oe-blue-button-generate/lib/fieldLevel.js @@ -466,4 +466,3 @@ var responsibleParty = exports.responsibleParty = { dataKey: "responsible_party", existsWhen: condition.propertyValueNotEmpty("name.last") }; - diff --git a/ccdaservice/oe-blue-button-meta/lib/CCDA/index.js b/ccdaservice/oe-blue-button-meta/lib/CCDA/index.js index b4ff6865cd3e..f4f4e70050bf 100644 --- a/ccdaservice/oe-blue-button-meta/lib/CCDA/index.js +++ b/ccdaservice/oe-blue-button-meta/lib/CCDA/index.js @@ -93,7 +93,7 @@ var CCDA = { }, {"name": "Social History", "templateIds": ["2.16.840.1.113883.10.20.22.2.17"] - } + } ] */ }; diff --git a/ccdaservice/oe-blue-button-util/LICENSE b/ccdaservice/oe-blue-button-util/LICENSE index addb1c2f160a..f786fc772282 100644 --- a/ccdaservice/oe-blue-button-util/LICENSE +++ b/ccdaservice/oe-blue-button-util/LICENSE @@ -186,7 +186,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2015 Amida Technology Solutions (http://amida-tech.com) + Copyright 2015 Amida Technology Solutions (http://amida-tech.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -199,4 +199,3 @@ Apache License WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - diff --git a/ccdaservice/packages/oe-cda-schematron/Gruntfile.js b/ccdaservice/packages/oe-cda-schematron/Gruntfile.js index 2d582279f491..9624addc009f 100644 --- a/ccdaservice/packages/oe-cda-schematron/Gruntfile.js +++ b/ccdaservice/packages/oe-cda-schematron/Gruntfile.js @@ -23,9 +23,8 @@ module.exports = function (grunt) { grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.loadNpmTasks('grunt-mocha-test'); - + grunt.registerTask('default', ['jshint', 'mochaTest']); grunt.registerTask('api', ['mochaTest']); }; - diff --git a/ccdaservice/packages/oe-cda-schematron/parseSchematron.js b/ccdaservice/packages/oe-cda-schematron/parseSchematron.js index c2ee0e4af213..1a035b462907 100644 --- a/ccdaservice/packages/oe-cda-schematron/parseSchematron.js +++ b/ccdaservice/packages/oe-cda-schematron/parseSchematron.js @@ -7,7 +7,7 @@ var xpath = require('xpath'); function parseSchematron(doc) { // Extract data from schematron var schematronData = extract(doc); - + return schematronData; } @@ -16,18 +16,18 @@ function extract(doc) { var patternLevelMap = {}; var patternRuleMap = {}; var ruleAssertionMap = {}; - + //// Namespace mapping var namespaces = xpath.select('//*[local-name()="ns"]', doc); for (var i = 0; i < namespaces.length; i++) { namespaceMap[namespaces[i].getAttribute('prefix')] = namespaces[i].getAttribute('uri'); } - + //// Pattern to level mapping - + // Find errors phases var errorPhase = xpath.select('//*[local-name()="phase" and @id="errors"]', doc); - + // Store error patterns if (errorPhase.length) { for (var i = 0; i < errorPhase[0].childNodes.length; i++) { @@ -36,10 +36,10 @@ function extract(doc) { } } } - + // Find errors phases var warningPhase = xpath.select('//*[local-name()="phase" and @id="warnings"]', doc); - + // Store warning patterns if (warningPhase.length) { for (var i = 0; i < warningPhase[0].childNodes.length; i++) { @@ -48,12 +48,12 @@ function extract(doc) { } } } - + //// Pattern to rule and rule to assertion mapping - + // Find patterns var patterns = xpath.select('//*[local-name()="pattern"]', doc); - + // Map patterns to rules for (var i = 0; i < patterns.length; i++) { var patternId = patterns[i].getAttribute('id'); @@ -67,9 +67,9 @@ function extract(doc) { context: parseContext(rules[j].getAttribute('context')), assertionsAndExtensions: getAssertionsAndExtensions(rules[j], defaultLevel) }; - } + } } - + return { namespaceMap: namespaceMap, patternRuleMap: patternRuleMap, @@ -79,7 +79,7 @@ function extract(doc) { function getAssertionsAndExtensions(rule, defaultLevel) { var assertionsAndExtensions = []; - + // Find and store assertions var assertions = xpath.select('./*[local-name()="assert"]', rule); for (var i = 0; i < assertions.length; i++) { @@ -97,7 +97,7 @@ function getAssertionsAndExtensions(rule, defaultLevel) { description: description }); } - + // Find and store extensions var extensions = xpath.select('./*[local-name()="extends"]', rule); for (var i = 0; i < extensions.length; i++) { @@ -106,7 +106,7 @@ function getAssertionsAndExtensions(rule, defaultLevel) { rule: extensions[i].getAttribute('rule'), }); } - + return assertionsAndExtensions; } @@ -119,4 +119,4 @@ function parseAbstract(str) { function parseContext(str) { return str || null; -} \ No newline at end of file +} diff --git a/ccdaservice/packages/oe-cda-schematron/test/test.sch b/ccdaservice/packages/oe-cda-schematron/test/test.sch index c4fe5cb1b1f4..b03f6a7a1df9 100644 --- a/ccdaservice/packages/oe-cda-schematron/test/test.sch +++ b/ccdaservice/packages/oe-cda-schematron/test/test.sch @@ -44,4 +44,4 @@ This is an invalid test - \ No newline at end of file + diff --git a/ccdaservice/packages/oe-cda-schematron/test/test.xml b/ccdaservice/packages/oe-cda-schematron/test/test.xml index 9f9a61db75ee..879a10a987aa 100644 --- a/ccdaservice/packages/oe-cda-schematron/test/test.xml +++ b/ccdaservice/packages/oe-cda-schematron/test/test.xml @@ -77,4 +77,4 @@ false - \ No newline at end of file + diff --git a/ccdaservice/packages/oe-cda-schematron/test/tests.js b/ccdaservice/packages/oe-cda-schematron/test/tests.js index 5b33f8e0becd..56ab79cd07ff 100644 --- a/ccdaservice/packages/oe-cda-schematron/test/tests.js +++ b/ccdaservice/packages/oe-cda-schematron/test/tests.js @@ -66,7 +66,7 @@ describe('Validator should', function() { expect(results.ignoredCount).to.be.equal(1); done(); }); - + it('return similar results without warnings', function(done) { results = validator.validate(xml, schematron, { includeWarnings: false }); expect(results).to.be.an('object'); @@ -84,7 +84,7 @@ describe('Validator should', function() { expect(results.ignoredCount).to.be.equal(1); done(); }); - + it('return similar results given xml filepath', function(done) { results = validator.validate(xmlPath, schematron); expect(results).to.be.an('object'); @@ -102,7 +102,7 @@ describe('Validator should', function() { expect(results.ignoredCount).to.be.equal(1); done(); }); - + it('return similar results given schematron filepath', function(done) { results = validator.validate(xml, schematronPath); expect(results).to.be.an('object'); @@ -120,7 +120,7 @@ describe('Validator should', function() { expect(results.ignoredCount).to.be.equal(1); done(); }); - + it('return similar results given xml filepath and schematron filepath', function(done) { results = validator.validate(xmlPath, schematronPath); expect(results).to.be.an('object'); diff --git a/ccdaservice/packages/oe-cda-schematron/testAssertion.js b/ccdaservice/packages/oe-cda-schematron/testAssertion.js index a77a652c92ea..b716d61d6270 100644 --- a/ccdaservice/packages/oe-cda-schematron/testAssertion.js +++ b/ccdaservice/packages/oe-cda-schematron/testAssertion.js @@ -4,7 +4,7 @@ module.exports = testAssertion; function testAssertion(test, selected, select, xmlDoc, resourceDir, xmlSnippetMaxLength) { var results = []; - + for (var i = 0; i < selected.length; i++) { try { var result = select('boolean(' + test + ')', selected[i]); @@ -24,7 +24,7 @@ function testAssertion(test, selected, select, xmlDoc, resourceDir, xmlSnippetMa return { ignored: true, errorMessage: err.message }; } } - + for (var i = 0; i < results.length; i++) { if (results[i].result !== true && results[i].result !== false) { return { ignored: true, errorMessage: 'Test returned non-boolean result' }; @@ -33,7 +33,7 @@ function testAssertion(test, selected, select, xmlDoc, resourceDir, xmlSnippetMa return results; } -function getXPath(node, path) { +function getXPath(node, path) { var top = !path ? true : false; path = path || []; if (node.parentNode) { @@ -70,4 +70,4 @@ function getXPath(node, path) { path.push(node.nodeName + ('[' + (count || 1) + ']')); } return top ? '/' + path.join('/') : path; -} \ No newline at end of file +} diff --git a/ccdaservice/packages/oe-cqm-service/.gitignore b/ccdaservice/packages/oe-cqm-service/.gitignore index 0eedb9bc084e..5b6e6f455e9f 100644 --- a/ccdaservice/packages/oe-cqm-service/.gitignore +++ b/ccdaservice/packages/oe-cqm-service/.gitignore @@ -116,4 +116,3 @@ dist .yarn/build-state.yml .yarn/install-state.gz .pnp.* - diff --git a/ccdaservice/utils/head-replace/head-replace.spec.js b/ccdaservice/utils/head-replace/head-replace.spec.js index bb2a65be6a72..74025f736811 100644 --- a/ccdaservice/utils/head-replace/head-replace.spec.js +++ b/ccdaservice/utils/head-replace/head-replace.spec.js @@ -4,7 +4,7 @@ describe('headReplace', () => { const originalHead = 'This is the original head'; const body = 'This is the document body'; const input = originalHead + body; - + describe('empty xslUrl', () => { it('should replace the original head with the default CDA head', () => { const defaultCDAHead = `\n\n`; @@ -12,7 +12,7 @@ describe('headReplace', () => { expect(headReplace(input, ' ')).toEqual(defaultCDAHead + body); }); }); - + describe('custom xslUrl', () => { it('should replace the original head with the custom CDA head, inserting the provided xlsUrl', () => { const customCDAHead = `\n\n`; diff --git a/ccr/ccd/ccr_ccd.xsl b/ccr/ccd/ccr_ccd.xsl index 0acc2683f576..a032c393958b 100755 --- a/ccr/ccd/ccr_ccd.xsl +++ b/ccr/ccd/ccr_ccd.xsl @@ -100,7 +100,7 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exclude-result-prefixes="a - + @@ -261,7 +261,7 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exclude-result-prefixes="a - + @@ -269,7 +269,7 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exclude-result-prefixes="a - + @@ -2631,7 +2631,7 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exclude-result-prefixes="a - + @@ -2662,7 +2662,7 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exclude-result-prefixes="a - + diff --git a/ccr/ccd/lib/date.add.template.xsl b/ccr/ccd/lib/date.add.template.xsl index d3ea7c34d97d..14826352b73e 100755 --- a/ccr/ccd/lib/date.add.template.xsl +++ b/ccr/ccd/lib/date.add.template.xsl @@ -6,7 +6,7 @@ xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:date="http://exslt.org/dates-and-times" extension-element-prefixes="date"> - + 31 28 @@ -42,7 +42,7 @@ Z - @@ -52,7 +52,7 @@ @@ -78,7 +78,7 @@ @@ -368,7 +368,7 @@ - + diff --git a/ccr/ccd/lib/date.format-date.template.xsl b/ccr/ccd/lib/date.format-date.template.xsl index 105b31e27728..a54c141e4fda 100755 --- a/ccr/ccd/lib/date.format-date.template.xsl +++ b/ccr/ccd/lib/date.format-date.template.xsl @@ -74,7 +74,7 @@ Z - @@ -83,7 +83,7 @@ @@ -178,7 +178,7 @@ - + @@ -304,7 +304,7 @@ @@ -436,10 +436,10 @@ - @@ -474,10 +474,10 @@ - diff --git a/ccr/ccd/lib/str.padding.template.xsl b/ccr/ccd/lib/str.padding.template.xsl index b98fe504b5cf..33f35f098e88 100755 --- a/ccr/ccd/lib/str.padding.template.xsl +++ b/ccr/ccd/lib/str.padding.template.xsl @@ -13,8 +13,8 @@ - diff --git a/ccr/ccd/templates/cdavocablookup.xsl b/ccr/ccd/templates/cdavocablookup.xsl index 2534866574f6..a327df80d26c 100755 --- a/ccr/ccd/templates/cdavocablookup.xsl +++ b/ccr/ccd/templates/cdavocablookup.xsl @@ -43,7 +43,7 @@ License : - + @@ -64,7 +64,7 @@ License : - + @@ -73,5 +73,5 @@ License : - + diff --git a/ccr/ccd/templates/cdavocabmap.xml b/ccr/ccd/templates/cdavocabmap.xml index daa1c3025a44..495fcb741576 100755 --- a/ccr/ccd/templates/cdavocabmap.xml +++ b/ccr/ccd/templates/cdavocabmap.xml @@ -148,7 +148,7 @@ License : Undifferentiated UN - + swallow, oral diff --git a/ccr/ccd/templates/datetime.xsl b/ccr/ccd/templates/datetime.xsl index 48593ae81feb..1af0b903b7da 100755 --- a/ccr/ccd/templates/datetime.xsl +++ b/ccr/ccd/templates/datetime.xsl @@ -33,7 +33,7 @@ License : - + MMM dd, yyyy diff --git a/ccr/ccd/templates/footer.xsl b/ccr/ccd/templates/footer.xsl index 95d5ebc5248c..4fb616817740 100755 --- a/ccr/ccd/templates/footer.xsl +++ b/ccr/ccd/templates/footer.xsl @@ -83,10 +83,10 @@ License : - + - + diff --git a/ccr/ccd/templates/hl7oid.xml b/ccr/ccd/templates/hl7oid.xml index 418c9680b7c6..ffee9499a96a 100755 --- a/ccr/ccd/templates/hl7oid.xml +++ b/ccr/ccd/templates/hl7oid.xml @@ -33,7 +33,7 @@ License : ICD9-CM - 2.16.840.1.113883.6.2 + 2.16.840.1.113883.6.2 ICD10 @@ -50,7 +50,7 @@ License : LOINC 2.16.840.1.113883.6.1 - + HL7 Administrative Gender 2.16.840.1.113883.5.1 @@ -58,5 +58,5 @@ License : VHA 2.16.840.1.113883.6.233 - + diff --git a/ccr/ccd/templates/hl7oidlookup.xsl b/ccr/ccd/templates/hl7oidlookup.xsl index d3b7769597ef..fe1cf2628f49 100755 --- a/ccr/ccd/templates/hl7oidlookup.xsl +++ b/ccr/ccd/templates/hl7oidlookup.xsl @@ -34,12 +34,11 @@ License : - + - + - diff --git a/contrib/portal_templates/assessments/SDC FHIR/After_Visit_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/After_Visit_Assessment.json index 6e1577f79911..5b5edc258176 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/After_Visit_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/After_Visit_Assessment.json @@ -670,4 +670,4 @@ } ], "name": "After_Visit_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/Back_Pain_History_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/Back_Pain_History_Assessment.json index f03af6c039cd..b9611c9e69ca 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/Back_Pain_History_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/Back_Pain_History_Assessment.json @@ -2163,4 +2163,4 @@ } ], "name": "Back_Pain_History_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/Back_Pain_Impact_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/Back_Pain_Impact_Assessment.json index 7849f59bd963..4136e046cd3b 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/Back_Pain_Impact_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/Back_Pain_Impact_Assessment.json @@ -1079,4 +1079,4 @@ } ], "name": "Back_Pain_Impact_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/Back_Pain_Severity_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/Back_Pain_Severity_Assessment.json index aa2fc2f22b0f..acd721463c9d 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/Back_Pain_Severity_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/Back_Pain_Severity_Assessment.json @@ -2474,4 +2474,4 @@ } ], "name": "Back_Pain_Severity_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/Follow_Up_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/Follow_Up_Assessment.json index b4584cd3ea1d..dd1251e4ea49 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/Follow_Up_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/Follow_Up_Assessment.json @@ -4667,4 +4667,4 @@ } ], "name": "Follow_Up_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/Full_Assessments.json b/contrib/portal_templates/assessments/SDC FHIR/Full_Assessments.json index 2497218d5c72..286d85c6f58e 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/Full_Assessments.json +++ b/contrib/portal_templates/assessments/SDC FHIR/Full_Assessments.json @@ -15776,4 +15776,4 @@ } ], "name": "Full_Assessments" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/Impact_of_Back_Pain_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/Impact_of_Back_Pain_Assessment.json index f4f0d04265fd..83d5cd91df1a 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/Impact_of_Back_Pain_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/Impact_of_Back_Pain_Assessment.json @@ -1079,4 +1079,4 @@ } ], "name": "Impact_of_Back_Pain_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/Medical_History_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/Medical_History_Assessment.json index a2c2d229d319..9d068d410128 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/Medical_History_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/Medical_History_Assessment.json @@ -3202,4 +3202,4 @@ } ], "name": "Medical_History_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Anxiety_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Anxiety_Assessment.json index f884174aaaf1..88bbd9f9a8ad 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Anxiety_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Anxiety_Assessment.json @@ -624,4 +624,4 @@ } ], "name": "PROMIS_ANXIETY_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Depression_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Depression_Assessment.json index 947f66ddec6f..b126dce8efbd 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Depression_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Depression_Assessment.json @@ -624,4 +624,4 @@ } ], "name": "PROMIS_DEPRESSION_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Interference_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Interference_Assessment.json index f3cd7b5e1a4c..c0367df2c6b7 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Interference_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Interference_Assessment.json @@ -624,4 +624,4 @@ } ], "name": "PROMIS_INTERFERENCE_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Physical_Activity_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Physical_Activity_Assessment.json index 7b4500edd159..a36ec62566d2 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Physical_Activity_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Physical_Activity_Assessment.json @@ -624,4 +624,4 @@ } ], "name": "PROMIS_PHYSICAL_ACTIVITY_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Physical_Function_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Physical_Function_Assessment.json index c68aba53103a..9542d71c1cb9 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Physical_Function_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Physical_Function_Assessment.json @@ -624,4 +624,4 @@ } ], "name": "PROMIS_Physical_Function_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Sleep_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Sleep_Assessment.json index be2e74f02ef1..6dd1e34d84a9 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Sleep_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/PROMIS_Sleep_Assessment.json @@ -624,4 +624,4 @@ } ], "name": "PROMIS_SLEEP_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/Pain_Initial_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/Pain_Initial_Assessment.json index 95453273c0b7..bded901f59ca 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/Pain_Initial_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/Pain_Initial_Assessment.json @@ -13721,4 +13721,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/Safety_Outcomes_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/Safety_Outcomes_Assessment.json index 12c5b721e162..66e5f4da8df7 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/Safety_Outcomes_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/Safety_Outcomes_Assessment.json @@ -1005,4 +1005,4 @@ } ], "name": "Safety_Outcomes_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/Shared_Decision_Making_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/Shared_Decision_Making_Assessment.json index fef5317e82c8..1bd25384b126 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/Shared_Decision_Making_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/Shared_Decision_Making_Assessment.json @@ -670,4 +670,4 @@ } ], "name": "Shared_Decision_Making_Assessment" -} \ No newline at end of file +} diff --git a/contrib/portal_templates/assessments/SDC FHIR/Social_Factors_Assessment.json b/contrib/portal_templates/assessments/SDC FHIR/Social_Factors_Assessment.json index 134b4d333e2b..35a40352dda5 100644 --- a/contrib/portal_templates/assessments/SDC FHIR/Social_Factors_Assessment.json +++ b/contrib/portal_templates/assessments/SDC FHIR/Social_Factors_Assessment.json @@ -1691,4 +1691,4 @@ } ], "name": "Social_Factors_Assessment" -} \ No newline at end of file +} diff --git a/contrib/util/language_translations/README b/contrib/util/language_translations/README index 15814f4f4a7b..023235be8c63 100644 --- a/contrib/util/language_translations/README +++ b/contrib/util/language_translations/README @@ -2,7 +2,7 @@ This directory holds the developer tools to maintain the language translations. These were created during development of OpenEMR version 3.0.2 The collectConstants.pl script can be used to collect all of the constants -from the openemr source code. This script uses the manuallyAddedConstants.txt and +from the openemr source code. This script uses the manuallyAddedConstants.txt and manuallyRemovedConstants.txt list to manually add or remove constants from the final output. Note that it also requires a list of old constants (this can be over-rided) to ensure no old constants are lost (ie ensure @@ -13,7 +13,7 @@ the file. found by collectConstants.pl script. -The manuallyAddedConstants.txt file includes constants to add manually to the list of constants. This should be only temporary as we implement - a mechanism for developers to include these constants in the source + a mechanism for developers to include these constants in the source code where they are called. -The filterDirectories.txt file includes paths to ignore in the searching. @@ -36,7 +36,7 @@ with the language spreadsheet to create a new spreadsheet that can be uploaded to Google Docs. The sortCleanList.pl script is simply a script to remove blank lines, windows -end line, repeats, and sort the manuallyRemovedConstants.txt and +end line, repeats, and sort the manuallyRemovedConstants.txt and manuallyAddedConstants.txt files. The current official list of constants are kept in the currentConstants.txt file, diff --git a/contrib/util/language_translations/combineConstantsSpreadsheet.pl b/contrib/util/language_translations/combineConstantsSpreadsheet.pl index cf98fb218cbb..6aaed0e21e5a 100644 --- a/contrib/util/language_translations/combineConstantsSpreadsheet.pl +++ b/contrib/util/language_translations/combineConstantsSpreadsheet.pl @@ -74,7 +74,7 @@ for (my $i =0; $i < $constantRow; $i++) { push (@newSpreadsheet, shift(@spreadsheet)); } - + # place common constants into the spreadsheet array my $idCounter = 1; # to assign constant id numbers my $hitFlag; # flag to ensure ad new constants to spreadsheet @@ -83,18 +83,18 @@ my $first = 1; # to keep track of removed constants later foreach my $var2 (@constants) { - $hitFlag = 0; # reset the hit flag - + $hitFlag = 0; # reset the hit flag + foreach my $var (@spreadsheet) { my @tempArr = split($de,$var); my $tempCons = @tempArr[$constantColumn]; - + # collect the original listing of constants during first loop if ($first) { push(@origSpreadConstants,$tempCons) } - + if ($tempCons eq $var2) { # add to array to keep track of removed constants push(@finalSpreadConstants,$tempCons); @@ -103,18 +103,18 @@ @tempArr[$constantIdColumn] = $idCounter; my $newLine = join($de,@tempArr); $idCounter +=1; - + # place into array push (@newSpreadsheet,$newLine); - + # set the hit flag $hitFlag = 1; } - + } - + $first = 0; - + if (!($hitFlag)) { # constant is new, so add to spreadsheet push (@newSpreadsheet,$idCounter.$de.$var2); @@ -127,7 +127,7 @@ # send the removed constants to a log file foreach my $var (@origSpreadConstants) { if (!(withinArray($var,@finalSpreadConstants))) { - print LOGFILE "REMOVED: ".$var."\n"; + print LOGFILE "REMOVED: ".$var."\n"; } } @@ -168,4 +168,3 @@ sub withinArray { } return $isMatch; } - diff --git a/contrib/util/language_translations/currentConstants.txt b/contrib/util/language_translations/currentConstants.txt index bf8002f33ece..0e96c8d61bc3 100644 --- a/contrib/util/language_translations/currentConstants.txt +++ b/contrib/util/language_translations/currentConstants.txt @@ -100,7 +100,7 @@ Accept Assignment Accept Credit Card transactions from Front Payments Accept Payment Accept Payment for -Accept Payment for +Accept Payment for Accepts Assignment Access can be given to other groups by editing User Memberships or Groups and Access Controls in Administration > ACL Access Control @@ -215,7 +215,7 @@ Add a note to the biller Add a Pharmacy Add all needed providers in a similar manner Add all rules to plan -add an event for +add an event for Add as a new message Add as a new note Add as New @@ -256,7 +256,7 @@ Add modifiers for this field type. You may select more than one. Add More Items Add New Add new -Add new category : +Add new category : Add new certificates to the Apache configuration file Add New Component Add New Components @@ -335,7 +335,7 @@ Additional Notes Additional Notes field is for local use in openEMR Additional notes for this result or recommendation Additional Notes: -Additional Notes: +Additional Notes: additional scopes Additional X-RAY Notes: Additionally, the corresponding US Snomed Extension Package can be imported separately after installing the International (English version) Snomed Release @@ -379,7 +379,7 @@ Adjustment Reasons Adjustment type is required for each line with an adjustment. Adjustment type is required for every line item. Adjustment value for code -Adjustment value for code +Adjustment value for code Adjustment, Consumption, Return, or Edit Adjustments Adjustments at Checkout @@ -698,7 +698,7 @@ Analyzed and And AND -and +and and all subordinate data? This action will be logged and modifier and processed. @@ -1053,7 +1053,7 @@ AVM Confirmed AVM OK Avulsion / avulsion fracture Avulsion lateral malleolus -Avulsion medial malleolus +Avulsion medial malleolus Awareness-Based Axial Length Axillary @@ -1209,14 +1209,14 @@ Billing Log Overwrite Billing log setting to append or overwrite the log file. Billing Manager Billing Note -Billing Note for +Billing Note for Billing Note: Billing queue results Billing queue results: Billing Report Billing Status Billing Status = Unbilled -billing to +billing to Billing View Binocular Pupillary Diameter - Distance Binocular Pupillary Diameter - Near @@ -1269,11 +1269,11 @@ Bottom Bottom Margin (px) Box 10 - This information indicates whether the patient’s illness or injury is related to employment, auto accident, or other accident Box 10 A. Employment related -BOX 10 A. Employment related +BOX 10 A. Employment related Box 10 B. Auto Accident -BOX 10 B. Auto Accident +BOX 10 B. Auto Accident Box 10 C. Other Accident -BOX 10 C. Other Accident +BOX 10 C. Other Accident Box 10 D - Is used to submit the Early and Periodic Screening, Diagnosis and Treatment (EPSDT) Referral Code Box 10 D. EPSDT Referral Code BOX 10 D. EPSDT Referral Code @@ -1309,23 +1309,23 @@ Box 17. Provider: Box 18 - The “Hospitalization Dates Related to Current Services” would refer to an inpatient stay and indicates the admission and discharge dates associated with the service(s) on the claim Box 18. Hospitalization date from BOX 18. Hospitalization date from -BOX 18. Hospitalization date from (yyyy-mm-dd): +BOX 18. Hospitalization date from (yyyy-mm-dd): Box 18. Hospitalization date from: Box 18. Hospitalization date to BOX 18. Hospitalization date to -BOX 18. Hospitalization date to (yyyy-mm-dd): +BOX 18. Hospitalization date to (yyyy-mm-dd): Box 18. Hospitalization date to: Box 20 - Indicates that services have been rendered by an independent provider as indicated in Box 32 (Service Facility Location Information) and the related costs Box 20. Is Outside Lab used? BOX 20. Is Outside Lab used? Box 22 - Medicaid Resubmission Code and Original Reference Number is the code and original reference number assigned by the destination payer or receiver to indicate a previously submitted claim or encounter Box 22. Medicaid Resubmission Code (ICD-10) -Box 22. Medicaid Resubmission Code (ICD-9) -BOX 22. Medicaid Resubmission Code (ICD-9) +Box 22. Medicaid Resubmission Code (ICD-9) +BOX 22. Medicaid Resubmission Code (ICD-9) Box 23 - Prior Authorization Number is the payer assigned number authorizing the service(s) Box 23. Prior Authorization No. -Box 23. Prior Authorization No. -BOX 23. Prior Authorization No. +Box 23. Prior Authorization No. +BOX 23. Prior Authorization No. BP BP Diastolic BP Systolic @@ -1447,16 +1447,16 @@ Cannot create file Cannot delete (from SFTP server) file Cannot delete file Cannot determine a destination filename -Cannot find +Cannot find Cannot find a destination filename Cannot find a skip source field for Cannot find a skip target field for Cannot find patient from SQL-Ledger customer id -Cannot find postscript document reference in -Cannot find provider from SQL-Ledger employee = +Cannot find postscript document reference in +Cannot find provider from SQL-Ledger employee = Cannot Modify Payments.Undistributed is Negative. Cannot open -Cannot open +Cannot open Cannot Post for Insurance.The Paying Entity selected is Patient. Cannot Post for Patient.The Paying Entity selected is Insurance. Cannot Post Payments.Undistributed is Negative. @@ -1505,7 +1505,7 @@ Categories Categories for Category category -Category +Category Category - Order, Result and Recommendation need an identifying code Category changed. Category Color Schema @@ -1745,14 +1745,14 @@ City, State, ZIP City,St,Zip City/State Claim -Claim +Claim Claim Edit Claim File Tracker Claim Status Claim test has completed running Claim Type Claim was generated to file -Claim was generated to file +Claim was generated to file Claims claims selected. Class @@ -2362,7 +2362,7 @@ CouchDB UserName Cough Cough: could not connect to server -Could not create directory for X12 partner +Could not create directory for X12 partner Could not find RxNorm Table! Please install. Could not import the document. Please contact the EMR vendor. could not install ACL @@ -2370,13 +2370,13 @@ could not open table Could not read file Could not read the file could not run sql query -Could not send email due to a server problem, +Could not send email due to a server problem, +Could not send email due to a server problem. Could not send email due to a server problem. -Could not send email due to a server problem. Couldn't create backup dir: Couldn't remove dir: Couldn't remove old backup file: -Couldn't remove old export file: +Couldn't remove old export file: Coumadin Management - INR Monitoring Couns by Method Counseling @@ -2461,7 +2461,7 @@ Created Created Definitions Created Definitions List Creates a report that contains various sections of the patient's medical record -Creating a Custom Favorite Group to order frequently ordered tests together +Creating a Custom Favorite Group to order frequently ordered tests together Creating a Custom Group of Tests as Favorites CREATING A NEW DATED REMINDER CREATING A NEW MESSAGE @@ -2556,7 +2556,7 @@ Custodian Custom Custom Billing Phone Number Custom Checkout Receipt -Custom Favorite Group - to group individual tests +Custom Favorite Group - to group individual tests Custom Favorite Group > Custom Favorite Item > Discrete results Custom Favorite Group and Custom Favorite Item is used to create customized groups of orders Custom Favorite Item - for individual orders or tests @@ -2649,7 +2649,7 @@ Date format for "not seen since" is not valid Date format for "seen before" is not valid Date format for "seen since" is not valid Date Immunization Information Statements Given -Date is missing for code +Date is missing for code Date Master Criteria Date of appointments Date of appointments mm/dd/yyyy @@ -2829,7 +2829,7 @@ del Delayed Recurrence (> 12 Mo) Delete delete -Delete Categories with ID(s) : +Delete Categories with ID(s) : Delete Category Delete Document Delete Encounter Form @@ -2956,7 +2956,7 @@ Diagnosis Reporting Diagnosis Reporting Only Diagnosis Title Diagnosis: -Diagnosis: +Diagnosis: Diagnostic Diagnostic Tests: Diagnostics @@ -2968,7 +2968,7 @@ Diarrhea Diastolic Dicom Viewer Dictation -Dictation: +Dictation: Did you receive a copy of the HIPAA Notice? Difference Difficulty working etc. @@ -3432,7 +3432,7 @@ Editing failed Education Education Date Educational materials for -ee the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free +ee the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Effective Date Effective Dates Effectiveness @@ -3664,7 +3664,7 @@ Enc# Encnter Encounter encounter -Encounter +Encounter encounter acute inpatient or ED Encounter Balance Encounter Billing Note @@ -3719,7 +3719,7 @@ Encryption Encryption key issued by Weno eRx service. Encryption Pass Phrase End -End (yyyy-mm-dd): +End (yyyy-mm-dd): End Date End date End Date From @@ -3751,7 +3751,7 @@ Enforce E-Mail in Portal Log On Dialog Engineer Engineering Firm English -English +English English (Australian) English (Indian) English (Standard) @@ -3885,7 +3885,7 @@ Error in "HIPAA" selection Error in "Process" selection Error in "SMS Gateway" selection Error in "Sort By" selection -Error in gzip compression of file: +Error in gzip compression of file: Error in YES or NO option Error Message ERROR Missing Patient ID @@ -4064,7 +4064,7 @@ Expand All Document Categories by Default Expand Form Expand/Collapse this form Expanded View -Expected form_encounter.pid to be +Expected form_encounter.pid to be Expiration Expiration Date Expired @@ -4269,7 +4269,7 @@ Field not suitable for edit option M Field type to use for employer or subscriber country in demographics. Field type to use for employer or subscriber state in demographics. Field(s) are missing! -FIELD: Text(.a); +FIELD: Text(.a); Fields in This Form Fields{{visual fields}} Fifth account message @@ -4429,7 +4429,7 @@ Football Injury Report Footwear Type for For -for +for For a Recognized Panel of Tests For a search to show results the codes must exist in the database. For added ease of use the Fee Sheet needs to be customized @@ -4439,8 +4439,8 @@ For Category For code For Custom Groups For Dates -For detailed instructions close the 'Enter Details' pop-up and click on the Help icon on the main form. -For detailed instructions close the 'Enter Provider Details' popup and click on the Help icon on the main form. +For detailed instructions close the 'Enter Details' pop-up and click on the Help icon on the main form. +For detailed instructions close the 'Enter Provider Details' popup and click on the Help icon on the main form. For each issue type there is a list of commonly selected titles which are customizable for your clinic's specific needs For ease of use it is rendered as a unique 6 digit number For editing the values under Procedures you would need to modify @@ -4461,7 +4461,7 @@ For IPPF Suriname and maybe others For manual lab entry you can give the organization any name - e.g Local Lab and click Save For Medicare only, forces the referring provider to be the same as the rendering provider. For Mental Status -For more information on Issues see the +For more information on Issues see the For NetSuite financial integration for OBR placer order number for patient @@ -4474,7 +4474,7 @@ For Provider For Referred Organization/Practitioner For sending claims directly to insurance company, based on X12 Partner Settings For the deceased notification to appear the date of death must be noted under Medical Dashboard > Edit Demographics > Misc -For the name to appear on the drop-down list it must be first entered in Administration > Address Book +For the name to appear on the drop-down list it must be first entered in Administration > Address Book For the past For the Procedure Module to be useful several tests have to be setup using the above methods For the Standard Code use the LOINC code 24326-1 @@ -4523,7 +4523,7 @@ Forward Pages via Fax Forward this Reminder Forward to current canvas Forwarded -Forwarded Portal Message Re: +Forwarded Portal Message Re: Foster Child Fourth Fourth account message @@ -4554,7 +4554,7 @@ From the Issues Menu item on the Nav Bar From the Patient dashboard via the individual Issues widgets on the right hand column From your clinic From: -From: +From: FROM_CITY FROM_EMAIL FROM_FNAME @@ -4632,7 +4632,7 @@ GCAC Statistics Reporting GCAC Stats GCAC visit form is missing Gender -Gender +Gender Gender Missing General General Anxiety Disorder 7 (GAD-7) @@ -4663,7 +4663,7 @@ Generate HCFA Generate Institutional X12 837I Generate Invoice Generate Letter -Generate Letter regarding +Generate Letter regarding Generate new key Generate New Receipt Number Generate New Report @@ -4676,7 +4676,7 @@ Generate QRDA III - 2014 Generate Report Generate Report - that opens the CCD in a separate tab on the browser Generate Report - that opens the CCR in a separate tab on the browser -Generate Report that creates a report and displays it in a separate tab on the browser +Generate Report that creates a report and displays it in a separate tab on the browser Generate safe key Generate thumbnail Generate thumbnail images @@ -4857,7 +4857,7 @@ HCFA top margin in points HCPCS Procedure/Service HD HD+ -he PostCalendar +he PostCalendar Head Head Circ Head Circumference @@ -4918,7 +4918,7 @@ Herpes Hertel Exophthalmometry HERT{{Hertel exophthalmometry}} Hesitancy -heyyo. you have been here for +heyyo. you have been here for Hib 1 Hib 2 Hib 3 @@ -5060,7 +5060,7 @@ hypoT{{hypotropia}} Hysterectomy I I am busy during this time. -I do not have permission to read +I do not have permission to read I have read and accept the I have read and my practice agrees to the I know but we need it! @@ -5291,7 +5291,7 @@ In Office In openEMR the Continuity of Care Record (CCR) reports to be generated can be limited to a specific date range by checking the Use Date Range check-box and entering the desired date range In order to fulfill Meaningful Use requirements for Computerized Provider Order Entry (CPOE) for lab and radiology tests this module needs to be used In order to properly store and retrieve test results and place new orders, tests/orders have to be setup in a hierarchical manner -In order to record the values of the results returned you have to create a separate Discrete Result (Tier 4) for each of the panel's constituents, the fruit, as direct descendants of this (General Health Panel) branch (Tier 3). Examples of the results being CBC - Hemoglobin, CBC - Hematocrit, CMP - Sodium, CMP - Potassium, TSH etc. +In order to record the values of the results returned you have to create a separate Discrete Result (Tier 4) for each of the panel's constituents, the fruit, as direct descendants of this (General Health Panel) branch (Tier 3). Examples of the results being CBC - Hemoglobin, CBC - Hematocrit, CMP - Sodium, CMP - Potassium, TSH etc. In order to register your device, please provide your OpenEMR login password In order to send Continuity of Care Record (CCR) and /or Continuity of Care Document (CCD) optionally check phiMail Allow CCD Send and/or phiMail Allow CCR Send to enable the Transmit feature for these data types In our case we will choose Local Lab that was setup previously @@ -5438,7 +5438,7 @@ Ins1 Ins2 Ins3 Insert -Insert failed: +Insert failed: Insert in Form Insert normals Insert normals - 100/100 @@ -5522,7 +5522,7 @@ Internal error in tableNameFromLayout Internal error! Internal error, no drug ID specified! Internal error: Cannot find MSH-10 -Internal error: claim +Internal error: claim Internal error: encounter ' Internal error: pid or encounter is missing. Internal error: the referenced encounter no longer exists. @@ -5565,7 +5565,7 @@ Invalid file type. Invalid layout ID Invalid length for Invalid non-numeric character in -Invalid or missing payer in source for code +Invalid or missing payer in source for code Invalid password Invalid recipient address. Please try again. Invalid Request @@ -5693,7 +5693,7 @@ It also lets you create new groups (AROs) as well as remove existing ones. It can also just receive results electronically It can be either linked to a patient or just be a message addressed to another user(s) It combines what the user knows i.e. user password with what the user has i.e. a device that is unique or a mechanism to generate/receive a unique code to be used at each login -It consists of three sections +It consists of three sections It consists of two parts - defining a Provider and configuring the Orders and Results It consists of two parts - the Receiving application and Receiving facility It consists of two parts - the Sending application and Sending facility @@ -5703,7 +5703,7 @@ It contains structured data that is included in the Continuity of Care Record (C It does not refer to the actual referral that has been created It does so by using an algorithm to combine the current UNIX time with the secret key to generate an ever changing unique key It has four tabs -It has three tiers +It has three tiers It is a commercial messaging module available to openEMR practices utilizing version 5.0.1 and higher It is a field in the HL7 Message header known as Processing ID It is a part of the medical record @@ -5788,7 +5788,7 @@ Justify each CPT code with one or more justifications using the dropdown box. Th Justify/Save JWT not found in system J{{Justify Header}} -k, here's the rest +k, here's the rest K1{{Keratometry 1}} K2{{Keratometry 2}} Kalaallisut, Greenlandic @@ -5996,7 +5996,7 @@ Left Vastus Lateralis Left w/o visit Left-Form Layout Left: -Left: +Left: Leg Pain/Cramping Legal Legal Authenticator @@ -6084,7 +6084,7 @@ List lists List modifiers, up to 4 can be listed, each separated by a space or a colon List Name List names cannot start with numbers. -List of +List of List of health care practitioners List of previous refractions List of previously dispensed Spectacle and Contact Lens Rxs @@ -6092,7 +6092,7 @@ List Prescriptions List used by above Country Data Type option. List used by above State Data Type option. Listening port of the RFC 5425 TLS syslog server. -Listing an ICD10 code will let you search for educational material for that particular code +Listing an ICD10 code will let you search for educational material for that particular code Lists Lists (lists) Lithuanian @@ -6156,13 +6156,13 @@ Log Types Log was already empty. Please close window. Logged in Logged in as -Logged in as: +Logged in as: Logged in User if provider, otherwise Current Provider Logged out. Logging Login login -Login - details are only required if you are connecting to a facility using the SFTP protocol +Login - details are only required if you are connecting to a facility using the SFTP protocol Login Into Facility Login name of WordPress user for portal access Login Page Layout @@ -6339,7 +6339,7 @@ Maximum Size Maximum Size (entering 0 will allow any size) Maximum size of thumbnail file May -MBO +MBO MC mcg MDM Document Category Name @@ -6531,7 +6531,7 @@ Missing or Invalid Missing Patient ID Missing PID. Missing report date -Missing slash after payer in source for code +Missing slash after payer in source for code Missing SMS config record Missing Subscriber Policy Number or DOB Missing Title @@ -6866,7 +6866,7 @@ New in ACL Ver 5 New in ACL Ver 6 New in ACL Ver 7 New in ACL Ver 8 -New in openEMR ver 5.0.2 +New in openEMR ver 5.0.2 New Inj/Status New Items (see above for details) New Layout @@ -6978,7 +6978,7 @@ No data available in table No Data to Process No Diagnosis no diagnosis was auto-generated from the clinical findings. -No directory for X12 partner +No directory for X12 partner No Documents No Documents Found No Encounter could be created @@ -7095,7 +7095,7 @@ No translations! No version of Internet Explorer supports U2F No visit No vitals have been documented. -No X-12 partner assigned for claim +No X-12 partner assigned for claim No, Cancel No-fault Insurance including Auto is Primary No: @@ -7153,9 +7153,9 @@ Normal Normal (normal) Normal BL Normal Cardiac Exam: -Normal Cardiac Exam: +Normal Cardiac Exam: +Normal Lung Exam: Normal Lung Exam: -Normal Lung Exam: Normal Office Visit Normal Oropharynx: Normal Right @@ -7209,7 +7209,7 @@ Not Due Not Esigned Not Examined Not Examined: -Not Examined: +Not Examined: Not For Diagnostic Use not found Not Found @@ -7257,7 +7257,7 @@ Note: This code was not entered by an authorized user. Only authorized codes may Note: This copay was entered against billing that has not been authorized. Please review status. Note: this is not an email address NOTE: Uploading files with duplicate names will cause the files to be automatically renamed (for example, file.jpg will become file.1.jpg). Filenames are considered unique per patient, not per category. -NOTE: Uploading files with duplicate names will cause the files to be automatically renamed. For example 'file.jpg' will become 'file.jpg.1'. Filenames are considered unique per patient, not per category. +NOTE: Uploading files with duplicate names will cause the files to be automatically renamed. For example 'file.jpg' will become 'file.jpg.1'. Filenames are considered unique per patient, not per category. Notes NOTES Notes - A short description that will show up as a tooltip @@ -7494,7 +7494,7 @@ Only need to set this if the server is not providing the correct host for OAuth2 Only one TOTP Key can be set up per user Only recall to provider, no reminder Only reminder to provider, no recall -Only Show Active Codes +Only Show Active Codes Only Show Diagnosis Reporting Codes Only Show Service Code Finance Reporting Codes Only upload active prescriptions @@ -7502,7 +7502,7 @@ Only upload active prescriptions to NewCrop eRx. Onset Onset of Current Symptoms or Illness Onset of Illness: -Onset of Ilness: +Onset of Ilness: Onset of Swelling: Onset/Hosp Date for Encounters Onset/hosp. date @@ -7677,7 +7677,7 @@ Original file Original file deletion error Oriya Oromo -OROPHARYNX: +OROPHARYNX: Ortho Orthophoric Orthopnea @@ -7786,7 +7786,7 @@ Parse Token Partially Administered Participant's name participants -Participants +Participants Partner Partner Name Partner Name issued for NewCrop eRx service. @@ -7882,7 +7882,7 @@ Patient Characteristics Patient chart ID Patient Chat Patient Checkout -Patient Checkout for +Patient Checkout for Patient City Patient City is missing Patient city missing @@ -8109,7 +8109,7 @@ Payment Tracking Id Payment Type Payment Validated: Save? Payment value for code -Payment value for code +Payment value for code Payment was successfully authorized and charged. Thank You. Payment was successfully authorized and your card is charged. Payments @@ -8412,7 +8412,7 @@ Please select a start date and end date Please select a valid recipient Please Select an Active Group Please select an adjustment reason for code -Please select an adjustment reason for code +Please select an adjustment reason for code Please select an answer Please select an event Please select an item that has more data @@ -8727,7 +8727,7 @@ Printer Printing Log Option Printing results: Printing skipped; see test output in -Printing skipped; see test output in +Printing skipped; see test output in Prints the CMS 1500 on the Preprinted form Prior Auth Prior Authorization @@ -8740,7 +8740,7 @@ Prior Validations Errors Prior Visit Prior Visits Priority -Priority +Priority Prism Prism Diopters Prison Correctional Facility @@ -9186,7 +9186,7 @@ Reference classification (risk level) Reference range of results Reference Reason Reference table and reference id must both be set -Reference this Account Id: +Reference this Account Id: Reference this Account Number Referential CDS Referential CDS (codetype:code) @@ -9497,7 +9497,7 @@ Return to this page and you will be able to complete the Valueset installation p Return Value Return Visit Returned to Play -Returned: +Returned: Reuse of previous passwords not allowed! Reuse of three previous passwords not allowed! Rev. @@ -9592,7 +9592,7 @@ rules already in plan Rules Configuration RUL{{right upper eyelid}} Run Setup again or contact support for assistance -Running Command: +Running Command: Rupture Rural Health Clinic Russian @@ -9635,7 +9635,7 @@ S S.S. S3: S4: -SA * * To read the license please read the docs/license.txt or visit * http://www.gnu.org/copyleft/gpl.html * */ //========================================================================= // +SA * * To read the license please read the docs/license.txt or visit * http://www.gnu.org/copyleft/gpl.html * */ //========================================================================= // Safe key database Sale Sales @@ -9803,7 +9803,7 @@ Seatbelt Use Second second Second account message -Second is the All Patients. This View shows all current templates that are default to all patients. +Second is the All Patients. This View shows all current templates that are default to all patients. Secondary Secondary billing Secondary Insurance @@ -9926,7 +9926,7 @@ Select one or more files to upload Select only one code per problem Select Options for Current Encounter Select Options for Current Order Id -Select Options for Current Procedure Order Id +Select Options for Current Procedure Order Id Select output Select patient Select Pharmacy @@ -9992,7 +9992,7 @@ Send Send A Dated Reminder Send a Reminder Send a report to this provider -Send an email to +Send an email to Send CCD Send CCR Send Complete - Prescription(s) Return Status @@ -10352,7 +10352,7 @@ SMS Sent SMS Text Usable Tags SMS Text Usable Tags: SMS Text, Usable Tag: ***NAME***, ***PROVIDER***, ***DATE***, ***STARTTIME***, ***ENDTIME***
i.e. Dear ***NAME*** -SMS Text, Usable Tags: +SMS Text, Usable Tags: SMS Zone SMS zone - This section lets use send and receive SMS texts SMS/Email Alert Settings @@ -10439,7 +10439,7 @@ Source Source CSV File Source File Source File Path -Source is missing for code +Source is missing for code Source Lot Source of the document Source Patient @@ -10539,7 +10539,7 @@ Standard Measures (Patient Reminders) Standard Name Standard; Simplified: only title, start date, comments and an Active checkbox;no diagnosis, occurrence, end date, referred-by or sports fields. ; Football Injury Start -Start (yyyy-mm-dd): +Start (yyyy-mm-dd): Start Another Report Start Assessment Start Batch Processing @@ -10988,7 +10988,7 @@ The CDA is a plain text document that is coded using the Extensible Markup Langu The Certificate Authority certificate The Charge column would be blank The Charge will be the actual amount being charged for each line item -The claim file: +The claim file: The CMS 1500 form has 33 boxes and is divided into two sections The Code column should have 905, the vendor specific Identifying code that was entered previously The Code column will be empty as items listed as a Group are not used in the actual reporting of results and therefore do not have a distinct code number @@ -11011,7 +11011,7 @@ The dashboard is the central location for convenient access the patient's medica The Dashboard page is divided into three sections The data integrity test failed for this form The data section of the dashboard page lists all pertinent items related to a patient -The dated reminder will start to appear 5 days before the reminder date under Dated Reminders +The dated reminder will start to appear 5 days before the reminder date under Dated Reminders The default code type to search for in the Fee Sheet. The default fee sheet can be modified and customized to make it more useful. The default fee sheet is divided into several sections and is designed to be filled from top to bottom with the save button at the very end. @@ -11031,7 +11031,7 @@ the Denial Group code is The Description column displays the short description that was entered, Serum chemistry tests The Description column will reflect the description value that was entered previously The Description should say Serum Uric Acid result -The Description will detail the type of payment or adjustment - Cash, Check, Electronic etc +The Description will detail the type of payment or adjustment - Cash, Check, Electronic etc The destination form was closed The destination form was closed. The destination form was closed; I cannot act on your selection. @@ -11065,7 +11065,7 @@ The file cannot be generated again. Do you want to proceed? The file could not be saved to CouchDB. The file could not be succesfully renamed, this error is usually related to permissions problems on the storage system. The file could not be succesfully stored, this error is usually related to permissions problems on the storage system -The filter section can be hidden or revealed by clicking the arrowhead on the bottom right +The filter section can be hidden or revealed by clicking the arrowhead on the bottom right The filtered results will show up in the section below it The finder table is grouped by past procedures then diagnosis code. Although there may be duplicate dx codes, they will be grouped with the appropriate procedure making building diagnoses list easier. The first ("target") chart is the one that is considered the most complete and accurate. Demographics, history and insurance sections for this one will be retained. @@ -11165,7 +11165,7 @@ The Name cell contains the name, date of birth, patient ID and date of last visi The Narrative Block contains information that is rendered as readable text The National Uniform Claim Committee (NUCC) is responsible for the maintenance of the 1500 Claim Form The Nav Bar allows one to quickly navigate to various parts of the patient's medical record -The new category will be a sub-category of +The new category will be a sub-category of The new list The new password can not be the same as the current password. The new password fields are not the same. @@ -11188,7 +11188,7 @@ The other 4 transaction types are simple transaction types - Patient Request, Ph The other Segments contain additional information in a strictly structured fashion The page will be redirected to Demographics. You can edit the country field and clickthrough to NewCrop again. The page you requested was not found. Please check that you typed the URL correctly. -The parts of the program to which access can be controlled are called Access Control Objects (ACOs). +The parts of the program to which access can be controlled are called Access Control Objects (ACOs). The password must be at least eight characters, and should The password you entered is invalid The Past Ocular History (POH) and Past Medical History (PMH) are negative. @@ -11242,7 +11242,7 @@ The selected code will be added to the coding text-box and the Description on th The selected codes will then appear in the 'Selected Fee Sheet Codes and Charges for Current Encounter' section The selections in this section will be used in charging for this encounter The sequence is the order in which this top order item will be displayed on the page, 1 to denote the first top level group -The server address will be of the form +The server address will be of the form The setup for lab tests will be described in detail, minor modification to these steps will be needed to setup in-office procedures and other procedure types The somewhat ambiguously named Counter-Referral is the space where the reply to the referral being made can be documented The Source and Date columns are copied from the first page, so normally you will not need to touch those. You can put a payment amount in the Pay column, an adjustment amount in the Adjust column, or both. You can also click the "W" on the right to automatically compute an adjustment value that writes off the remainder of the charge for that line item. @@ -11301,7 +11301,7 @@ The vendor-specific code identifying this procedure or result. If no vendor ente The very first step would be install the ICD codes. Go to Administraion > Other > External Data Loads. Select the Code sets you want to install and click Install The very last line of this report will give the Grand Total of Charges, Payments, Adjustments and the Balance The Weno Exchange is well integrated with openEMR and is not subscription based -The X12 files as well as the resulting HTML output reports are archived in the "era" subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. The URL is +The X12 files as well as the resulting HTML output reports are archived in the "era" subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. The URL is The X12 files as well as the resulting HTML output reports are archived in the 'era' subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. The zip file will contain the following items Theme @@ -11319,7 +11319,7 @@ Therapy Group Encounter Therapy Group Finder There are There are 10 settings that are related to procedures included in the standard release of openEMR -There are 3 forms in the Core category - Demographics, Facility Specific User Information and History and all 5 forms in Transactions that can be edited +There are 3 forms in the Core category - Demographics, Facility Specific User Information and History and all 5 forms in Transactions that can be edited There are currently no prescriptions There are errors with your submission. These are outlined below. There are four message statuses - New, Forwarded, Read and Done @@ -11339,7 +11339,7 @@ There are several versions of HL7, versions 2.x and version 3 There are several ways to customize the fee sheet. It depends on how comfortable you are in adding information to the database itself There are three actions that are possible - Create a New Dated Reminder, Forward and Set as Completed There are three actions that can be performed here - edit an existing group (ARO), add a new group (ARO) or delete an existing group (ARO). -There are three main template views. The first is the Repository where you store templates for future edits and disposal. +There are three main template views. The first is the Repository where you store templates for future edits and disposal. There are three main types of reports that can be created, two pertain to continuity of ongoing care - Continuity of Care Record (CCR) and Continuity of Care Document (CCD) and the third - Patient Report that creates a document containing various sections of the patient's medical record including demographics, medical issues, procedures and encounters. It also has the ability to include all or any of the scanned documents in the patient's chart There are three options available when you create a Continuity of Care Document (CCD) There are three options available when you create a Continuity of Care Record (CCR) @@ -11360,14 +11360,14 @@ There is already a category named There is already a subcategory named There is already an item named There is already an open patient record request. -There is no COA entry for AR account -There is no COA entry for cash account -There is no COA entry for income account +There is no COA entry for AR account +There is no COA entry for cash account +There is no COA entry for income account There is no current patient There is no local content for this topic. There is no match for invoice id -There is no match for invoice id = -There is no parts entry for services ID +There is no match for invoice id = +There is no parts entry for services ID There is no patient with portal login There was a problem registering you. Recommend contacting clinic for assistance. There was a problem sending the message. @@ -11475,7 +11475,7 @@ This has to entered once in this form This help file is divided into four sections This help file is divided into the following sections This ICD code can be automatically added to to Problem List by checking the P (Problem) checkbox. This selected item will show up in the Issues section under Medical problems -This invoice number has been changed to +This invoice number has been changed to This is a child of result This is done in Administration > Users. This is followed by the Edit and Add columns containing a pencil icon and a + icon @@ -11511,7 +11511,7 @@ this location This message need not necessarily be linked to a patient This message text is not saved automatically. Copy and save it as appropriate for the content. This method will however result in the data becoming non-structured and one would loose the ability to document the reply in an electronic format -This module is being used by +This module is being used by This module is in test mode. The database will not be changed. This module is subscription based and needs to be enabled from Administration > Globals > Connectors > Enable NewCrop eRx Service This module is well integrated with openEMR, there are however two non-subscription based alternatives, Weno and Allscripts that can be used instead @@ -11519,7 +11519,7 @@ This module promotes efficient entry of EOB data. This Month to Date This name already exists under this parent. This namespace already exists in database -This new category will be a sub-category of +This new category will be a sub-category of This note goes on the bottom of every checkout receipt. This order was already transmitted on This page allows you to review each of the supported external dataloads that you can install and upgrade. Each section below can be expanded by clicking on the section header to review the status of the particular database of interest. @@ -11544,7 +11544,7 @@ This section can be customized to group the codes into various categories This section DOES NOT let you create new ACOs. This section is where the codes use to charge for the visit are selected This section lets you search for the needed code if it is not in the default or customized options in 'Select Code' section -This section will allow the logged in user to view existing methods or to delete them +This section will allow the logged in user to view existing methods or to delete them This sets the Default Calendar View, Default is Day. This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only This specifies whether to include date in Box 31. @@ -11674,7 +11674,7 @@ To access it click on the Recall Board menu item in the top navigation bar or cl To add a copay click the 'Add Copay' button To add messages, please click here To add more options to the dropdown menu go to Administration > Lists > Manage Lists and select 'Price Level' in the dropdown box and enter the types e.g: Credit Card, Cash etc. -To add notes, please click +To add notes, please click To add notes, please click here To Affected Area to affected area @@ -11696,7 +11696,7 @@ To ded'ble To delete any or all the selected ICD10 codes click again on the Diagnosis Codes box to bring up the Select Diagnosis Codes pop-up window To delink just click on the item to delink and it will get delinked and will no longer be highlighted To Dems -To disable automatic message checking go to Administration > Globals > Connectors and set phiMail Message Check Interval to 0 (zero) +To disable automatic message checking go to Administration > Globals > Connectors and set phiMail Message Check Interval to 0 (zero) To Disable client side SSL certificates, comment above lines in Apache configuration file and set To Disable client side SSL certificates, comment above lines in Apache configuration file and turn off the \'Enable Client SSL\' global setting in OpenEMR and restart Apache server. To Disable HTTPS, comment the above lines in Apache configuration file and restart Apache server. @@ -11716,15 +11716,15 @@ To Enctr To filter by sex To fulfill Meaningful use requirements and help track its use you can check on the Sent Summary of Care check-box and the Sent Summary of Care Electronically check-box if appropriate To fully delete hit 'Save' -To get started you choose one of the two radio buttons. 'Invoice Search' or 'ERA Upload' -To help explore the various components of the Report page especially if you want to use it as an instruction manual it is suggested that you reduce the size of the browser to cover half the viewport, resize the help pop-up by clicking and dragging the bottom right corner of the pop-up. Open another instance of the browser and resize it to cover the other half of the viewport, login to openEMR +To get started you choose one of the two radio buttons. 'Invoice Search' or 'ERA Upload' +To help explore the various components of the Report page especially if you want to use it as an instruction manual it is suggested that you reduce the size of the browser to cover half the viewport, resize the help pop-up by clicking and dragging the bottom right corner of the pop-up. Open another instance of the browser and resize it to cover the other half of the viewport, login to openEMR To help familiarize you with the various components of the Dashboard page it is suggested that you reduce the size of the browser to cover half the viewport, resize the help pop-up by clicking and dragging the bottom right corner of the pop-up. Open another instance of the browser and resize it to cover the other half of the viewport, login to openEMR To help simplify implementations, commonly used templates were harmonized from existing CDA implementation guides and consolidated into a single implementation guide – the C-CDA Implementation Guide (IG) (07/2012) To History To include the scanned documents that are a part of the patient's record select the desired records by check the relevant check-boxes To Issues To link the Issues to an encounter first select the issue, it will be highlighted yellow, then click on one or more encounters to link them, the selected encounters will be highlighted in purple -To link this encounter/consult to an existing issue, click the +To link this encounter/consult to an existing issue, click the To link this encounter/consult to an existing issue, click the desired issue above to highlight it and then click [Save]. Hold down [Ctrl] button to select multiple issues. To link this encounter/consult to an existing issue, click the desired issue above to highlight it and then click Save to login again @@ -11751,11 +11751,11 @@ To summarize to this visit? To upload CCR document of already existing patient use Patient Summary Screen->Documents. For CCR document of a new patient use Miscellanous->New Documents screen To upload local text or html templates click the Upload button in Template Repository title to expose the file select button. Next select a Category from Scope bar if wanted then click files select button to show the file browser. You may select as many files to upload within reason -To use the help page as an instruction manual it is suggested that you reduce the size of the browser to cover half the viewport, resize the help pop-up by clicking and dragging the bottom right corner of the pop-up. Open another instance of the browser and resize it to cover the other half of the viewport, login to openEMR +To use the help page as an instruction manual it is suggested that you reduce the size of the browser to cover half the viewport, resize the help pop-up by clicking and dragging the bottom right corner of the pop-up. Open another instance of the browser and resize it to cover the other half of the viewport, login to openEMR To use this help file as an instruction manual it is best to resize your browser to occupy half the screen, open another instance of the browser to fill the other half of the screen, login to openEMR and open the help file in this browser and resize it by clicking and dragging the bottom right corner so that it occupies the entire half screen To use this help file as an instruction manual it is suggested that you reduce the size of the browser to cover half the viewport, resize the help pop-up by clicking and dragging the bottom right corner of the pop-up. Open another instance of the browser and resize it to cover the other half of the viewport, login to openEMR To: -To: +To: TO_CITY TO_FAX TO_FNAME @@ -11828,7 +11828,7 @@ total entries Total failed reminders sent via email Total failed reminders sent via phone Total for -Total for +Total for Total for category Total GAD-7 score Total inactivated reminders @@ -11867,7 +11867,7 @@ Total updated reminders Total Visit Charges Totals Totals for -Totals for +Totals for Totals Only TOTP TOTP - Cons @@ -11957,7 +11957,7 @@ Treatment Plan Treatment Planning Treatment Received Treatment: -Treatment: +Treatment: Tree Trend trftime($month_format, mktime(0, 0, 0, $i, 1, 2000)) ); $month_value @@ -11999,7 +11999,7 @@ Two Years Ahead Tx Date Tympanic Membrane Type -Type a brief message and hit Send Message +Type a brief message and hit Send Message Type a name for the key in the text box Type a name for your key, insert it into a USB port and click the Register button below Type Id or Name.3 characters minimum (including spaces). @@ -12016,7 +12016,7 @@ Type of group Type of screen layout Type or scan the patient identifier here Type Sodium under Name and Sodium result under description -Type the message and click Send Message +Type the message and click Send Message Type the name of the drug in the Drug Search text-box Type to search and select revenue code Type to search. @@ -12280,12 +12280,12 @@ Use RxNorm Use servers protocol and host in urls (portal internal only). Use source filename Use SSL (encrypted) connection to CouchDB -Use the fee sheet to charge for services or products. +Use the fee sheet to charge for services or products. Use the fields below for a purchase or transfer. Use the help file on that page for further help Use the latest versions of the following modern browsers - Chrome, Firefox, Safari, Edge and Opera Use the Select User dropdown box to select the user(s) to whom the message will be sent -Use this feature only with newly installed sites, +Use this feature only with newly installed sites, Use this image Use this section to delete existing groups or Access Request Objects (AROs) Use topics? @@ -12294,7 +12294,7 @@ Used on the login and about pages Used to enter information that pertains to this particular claim in order to facilitate processing and submitting this claim User user -User +User User / Groups User Administration User and Facility Administration @@ -12441,7 +12441,7 @@ Verify your email for patient portal registration Version Version 1 Onsite Patient Portal Site Address Version 2 Onsite Patient Portal Site Address -Version 2.x is widely used in the healthcare industry and openEMR uses HL7 version 2.3 +Version 2.x is widely used in the healthcare industry and openEMR uses HL7 version 2.3 Version Number Version/Model Number Vert Base{{abbreviation for Vertical Prism Base}} @@ -12812,7 +12812,7 @@ X-Ray Interpretation: X12 only ICN resubmission No. X12 only replacement claim: X12 only: Replacement Claim -X12 only: Replacement Claim +X12 only: Replacement Claim X12 only: Replacement Claim, X12 only ICN resubmission No is used for electronic resubmission of claims. Requirement varies by insurer X12 OPTIONS X12 Partner @@ -13046,39 +13046,39 @@ Zoom in Zoom out Zoom: click-drag, Pan: shift-click-drag, Restore: double-click Zulu - but was + but was could not be accessed. Do you really want to delete Drug emails not sent from - has been created. + has been created. has been re-opened. History is not a number is ready for re-billing. LLL: Lot - Medicaid Original Reference No. + Medicaid Original Reference No. min not found! Pecularities in many browsers may mean that the output below enters your screen in sudden jerks and that there are long pauses of several seconds where it appears as though things may have crashed. That is not the case, you will eventually see output coming out line by line. There may be sequential numbers appearing below, this is to indicate that even though nothing else may be displaying there is activity going on. These numbers will be interspersed with the content of the billing and that is normal. prescription has reached its limit of - until + until update failed, not in database? was marked as billed only. was queued successfully. ! Left w/o visit -" for code +" for code " is CHECKED in PostCalendar Settings! # Ins/fin issue # of tablets: $ $ Coding done -$label (yyyy-mm-dd): +$label (yyyy-mm-dd): % % Canceled < 24h -% Cancelled < 24h +% Cancelled < 24h ' should exist but does not. (% matches any string, _ matches any character) ([ctrl] + click to select multiple recipients) diff --git a/contrib/util/language_translations/currentLanguage_utf8.sql b/contrib/util/language_translations/currentLanguage_utf8.sql index bc561238bb0c..db9aa298b50b 100644 --- a/contrib/util/language_translations/currentLanguage_utf8.sql +++ b/contrib/util/language_translations/currentLanguage_utf8.sql @@ -250877,4 +250877,3 @@ INSERT INTO `lang_definitions` VALUES (237508, 13233, 59, 'dummy'); INSERT INTO `lang_definitions` VALUES (237509, 13234, 59, 'dummy'); -- - diff --git a/contrib/util/language_translations/lang_dump.plx b/contrib/util/language_translations/lang_dump.plx index 252dd3474c72..c9bd77607e5c 100755 --- a/contrib/util/language_translations/lang_dump.plx +++ b/contrib/util/language_translations/lang_dump.plx @@ -66,4 +66,3 @@ while (my @row = $sth->fetchrow_array()) { ####################################################################### $dbh->disconnect; - diff --git a/contrib/util/language_translations/lang_load.plx b/contrib/util/language_translations/lang_load.plx index 941b3ffba27b..f6f88143898c 100755 --- a/contrib/util/language_translations/lang_load.plx +++ b/contrib/util/language_translations/lang_load.plx @@ -112,4 +112,3 @@ while (my $line = ) { print "\nInserted $countnew rows, updated $countup rows.\n"; $dbh->disconnect; - diff --git a/contrib/util/language_translations/log_buildLanguageDatabase.txt b/contrib/util/language_translations/log_buildLanguageDatabase.txt index b29eb53b72c8..9ded28ae200b 100644 --- a/contrib/util/language_translations/log_buildLanguageDatabase.txt +++ b/contrib/util/language_translations/log_buildLanguageDatabase.txt @@ -124,8 +124,8 @@ Following constant not same: original- val:Couldn't remove old backup file: spreadsheet- ID:2378 val:Couldn\'t remove old backup file: Following constant not same: - original- val:Couldn't remove old export file: - spreadsheet- ID:2379 val:Couldn\'t remove old export file: + original- val:Couldn't remove old export file: + spreadsheet- ID:2379 val:Couldn\'t remove old export file: Following constant not same: original- val:Creates a report that contains various sections of the patient's medical record spreadsheet- ID:2463 val:Creates a report that contains various sections of the patient\'s medical record @@ -241,11 +241,11 @@ Following constant not same: original- val:Fill in any missing details or edit existing information. This will be saved in the patient's demographics page in openEMR spreadsheet- ID:4306 val:Fill in any missing details or edit existing information. This will be saved in the patient\'s demographics page in openEMR Following constant not same: - original- val:For detailed instructions close the 'Enter Details' pop-up and click on the Help icon on the main form. - spreadsheet- ID:4442 val:For detailed instructions close the \'Enter Details\' pop-up and click on the Help icon on the main form. + original- val:For detailed instructions close the 'Enter Details' pop-up and click on the Help icon on the main form. + spreadsheet- ID:4442 val:For detailed instructions close the \'Enter Details\' pop-up and click on the Help icon on the main form. Following constant not same: - original- val:For detailed instructions close the 'Enter Provider Details' popup and click on the Help icon on the main form. - spreadsheet- ID:4443 val:For detailed instructions close the \'Enter Provider Details\' popup and click on the Help icon on the main form. + original- val:For detailed instructions close the 'Enter Provider Details' popup and click on the Help icon on the main form. + spreadsheet- ID:4443 val:For detailed instructions close the \'Enter Provider Details\' popup and click on the Help icon on the main form. Following constant not same: original- val:For each issue type there is a list of commonly selected titles which are customizable for your clinic's specific needs spreadsheet- ID:4444 val:For each issue type there is a list of commonly selected titles which are customizable for your clinic\'s specific needs @@ -301,8 +301,8 @@ Following constant not same: original- val:If you have chosen to upload electronic remittances, then the search window redisplays itself with the matching invoices from the X12 file. You may click on any of these invoice numbers (as described above) if you wish to make any corrections before the remittance information is applied. To apply the changes, click the 'Process ERA File' button at the bottom of the page. This will produce a new window with a detailed report. spreadsheet- ID:5183 val:If you have chosen to upload electronic remittances, then the search window redisplays itself with the matching invoices from the X12 file. You may click on any of these invoice numbers (as described above) if you wish to make any corrections before the remittance information is applied. To apply the changes, click the \'Process ERA File\' button at the bottom of the page. This will produce a new window with a detailed report. Following constant not same: - original- val:In order to record the values of the results returned you have to create a separate Discrete Result (Tier 4) for each of the panel's constituents, the fruit, as direct descendants of this (General Health Panel) branch (Tier 3). Examples of the results being CBC - Hemoglobin, CBC - Hematocrit, CMP - Sodium, CMP - Potassium, TSH etc. - spreadsheet- ID:5294 val:In order to record the values of the results returned you have to create a separate Discrete Result (Tier 4) for each of the panel\'s constituents, the fruit, as direct descendants of this (General Health Panel) branch (Tier 3). Examples of the results being CBC - Hemoglobin, CBC - Hematocrit, CMP - Sodium, CMP - Potassium, TSH etc. + original- val:In order to record the values of the results returned you have to create a separate Discrete Result (Tier 4) for each of the panel's constituents, the fruit, as direct descendants of this (General Health Panel) branch (Tier 3). Examples of the results being CBC - Hemoglobin, CBC - Hematocrit, CMP - Sodium, CMP - Potassium, TSH etc. + spreadsheet- ID:5294 val:In order to record the values of the results returned you have to create a separate Discrete Result (Tier 4) for each of the panel\'s constituents, the fruit, as direct descendants of this (General Health Panel) branch (Tier 3). Examples of the results being CBC - Hemoglobin, CBC - Hematocrit, CMP - Sodium, CMP - Potassium, TSH etc. Following constant not same: original- val:In the 'Post Item' section that is displayed at the top you may enter a source (e.g. check number), pay date and check amount. The reason for the source and pay date is so that you don\'t have to enter them over and over again for each claim. The amount that you enter will be decreased for each invoice that is given part of the payment, and hopefully will end at zero when you are done. spreadsheet- ID:5304 val:In the \'Post Item\' section that is displayed at the top you may enter a source (e.g. check number), pay date and check amount. The reason for the source and pay date is so that you don\'t have to enter them over and over again for each claim. The amount that you enter will be decreased for each invoice that is given part of the payment, and hopefully will end at zero when you are done. @@ -322,8 +322,8 @@ Following constant not same: original- val:Justify each CPT code with one or more justifications using the dropdown box. These will reflect the diagnosis codes that was previously selected in 'Select Codes' spreadsheet- ID:5787 val:Justify each CPT code with one or more justifications using the dropdown box. These will reflect the diagnosis codes that was previously selected in \'Select Codes\' Following constant not same: - original- val:k, here's the rest - spreadsheet- ID:5791 val:k, here\'s the rest + original- val:k, here's the rest + spreadsheet- ID:5791 val:k, here\'s the rest Following constant not same: original- val:Lets you delete a line or row. Hit 'Refresh' and the line will have a strikethrough across it spreadsheet- ID:6016 val:Lets you delete a line or row. Hit \'Refresh\' and the line will have a strikethrough across it @@ -346,8 +346,8 @@ Following constant not same: original- val:Note there is no 'Save' button. spreadsheet- ID:7245 val:Note there is no \'Save\' button. Following constant not same: - original- val:NOTE: Uploading files with duplicate names will cause the files to be automatically renamed. For example 'file.jpg' will become 'file.jpg.1'. Filenames are considered unique per patient, not per category. - spreadsheet- ID:7260 val:NOTE: Uploading files with duplicate names will cause the files to be automatically renamed. For example \'file.jpg\' will become \'file.jpg.1\'. Filenames are considered unique per patient, not per category. + original- val:NOTE: Uploading files with duplicate names will cause the files to be automatically renamed. For example 'file.jpg' will become 'file.jpg.1'. Filenames are considered unique per patient, not per category. + spreadsheet- ID:7260 val:NOTE: Uploading files with duplicate names will cause the files to be automatically renamed. For example \'file.jpg\' will become \'file.jpg.1\'. Filenames are considered unique per patient, not per category. Following constant not same: original- val:NPI - Enter the Provider's unique 10-digit National Provider Identifier or NPI identification number spreadsheet- ID:7312 val:NPI - Enter the Provider\'s unique 10-digit National Provider Identifier or NPI identification number @@ -478,8 +478,8 @@ Following constant not same: original- val:The user's actual privileges are determined by the access to the parts of the program i.e. (ACO) that each group (ARO) has. spreadsheet- ID:11294 val:The user\'s actual privileges are determined by the access to the parts of the program i.e. (ACO) that each group (ARO) has. Following constant not same: - original- val:The X12 files as well as the resulting HTML output reports are archived in the "era" subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. The URL is - spreadsheet- ID:11304 val:The X12 files as well as the resulting HTML output reports are archived in the \"era\" subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. The URL is + original- val:The X12 files as well as the resulting HTML output reports are archived in the "era" subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. The URL is + spreadsheet- ID:11304 val:The X12 files as well as the resulting HTML output reports are archived in the \"era\" subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. The URL is Following constant not same: original- val:The X12 files as well as the resulting HTML output reports are archived in the 'era' subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. spreadsheet- ID:11305 val:The X12 files as well as the resulting HTML output reports are archived in the \'era\' subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. @@ -520,8 +520,8 @@ Following constant not same: original- val:To fully delete hit 'Save' spreadsheet- ID:11718 val:To fully delete hit \'Save\' Following constant not same: - original- val:To get started you choose one of the two radio buttons. 'Invoice Search' or 'ERA Upload' - spreadsheet- ID:11719 val:To get started you choose one of the two radio buttons. \'Invoice Search\' or \'ERA Upload\' + original- val:To get started you choose one of the two radio buttons. 'Invoice Search' or 'ERA Upload' + spreadsheet- ID:11719 val:To get started you choose one of the two radio buttons. \'Invoice Search\' or \'ERA Upload\' Following constant not same: original- val:To include the scanned documents that are a part of the patient's record select the desired records by check the relevant check-boxes spreadsheet- ID:11724 val:To include the scanned documents that are a part of the patient\'s record select the desired records by check the relevant check-boxes @@ -559,8 +559,8 @@ Following constant not same: original- val:You have attempted to alter content which is locked. Remove the lock if you want to do this. To unlock, remove the line, '/*lock::*/' spreadsheet- ID:12902 val:You have attempted to alter content which is locked. Remove the lock if you want to do this. To unlock, remove the line, \'/*lock::*/\' Following constant not same: - original- val:" for code - spreadsheet- ID:13072 val:\" for code + original- val:" for code + spreadsheet- ID:13072 val:\" for code Following constant not same: original- val:" is CHECKED in PostCalendar Settings! spreadsheet- ID:13073 val:\" is CHECKED in PostCalendar Settings! @@ -701,8 +701,8 @@ Following constant not same: original- val:Couldn't remove old backup file: spreadsheet- ID:2378 val:Couldn\'t remove old backup file: Following constant not same: - original- val:Couldn't remove old export file: - spreadsheet- ID:2379 val:Couldn\'t remove old export file: + original- val:Couldn't remove old export file: + spreadsheet- ID:2379 val:Couldn\'t remove old export file: Following constant not same: original- val:Creates a report that contains various sections of the patient's medical record spreadsheet- ID:2463 val:Creates a report that contains various sections of the patient\'s medical record @@ -818,11 +818,11 @@ Following constant not same: original- val:Fill in any missing details or edit existing information. This will be saved in the patient's demographics page in openEMR spreadsheet- ID:4306 val:Fill in any missing details or edit existing information. This will be saved in the patient\'s demographics page in openEMR Following constant not same: - original- val:For detailed instructions close the 'Enter Details' pop-up and click on the Help icon on the main form. - spreadsheet- ID:4442 val:For detailed instructions close the \'Enter Details\' pop-up and click on the Help icon on the main form. + original- val:For detailed instructions close the 'Enter Details' pop-up and click on the Help icon on the main form. + spreadsheet- ID:4442 val:For detailed instructions close the \'Enter Details\' pop-up and click on the Help icon on the main form. Following constant not same: - original- val:For detailed instructions close the 'Enter Provider Details' popup and click on the Help icon on the main form. - spreadsheet- ID:4443 val:For detailed instructions close the \'Enter Provider Details\' popup and click on the Help icon on the main form. + original- val:For detailed instructions close the 'Enter Provider Details' popup and click on the Help icon on the main form. + spreadsheet- ID:4443 val:For detailed instructions close the \'Enter Provider Details\' popup and click on the Help icon on the main form. Following constant not same: original- val:For each issue type there is a list of commonly selected titles which are customizable for your clinic's specific needs spreadsheet- ID:4444 val:For each issue type there is a list of commonly selected titles which are customizable for your clinic\'s specific needs @@ -878,8 +878,8 @@ Following constant not same: original- val:If you have chosen to upload electronic remittances, then the search window redisplays itself with the matching invoices from the X12 file. You may click on any of these invoice numbers (as described above) if you wish to make any corrections before the remittance information is applied. To apply the changes, click the 'Process ERA File' button at the bottom of the page. This will produce a new window with a detailed report. spreadsheet- ID:5183 val:If you have chosen to upload electronic remittances, then the search window redisplays itself with the matching invoices from the X12 file. You may click on any of these invoice numbers (as described above) if you wish to make any corrections before the remittance information is applied. To apply the changes, click the \'Process ERA File\' button at the bottom of the page. This will produce a new window with a detailed report. Following constant not same: - original- val:In order to record the values of the results returned you have to create a separate Discrete Result (Tier 4) for each of the panel's constituents, the fruit, as direct descendants of this (General Health Panel) branch (Tier 3). Examples of the results being CBC - Hemoglobin, CBC - Hematocrit, CMP - Sodium, CMP - Potassium, TSH etc. - spreadsheet- ID:5294 val:In order to record the values of the results returned you have to create a separate Discrete Result (Tier 4) for each of the panel\'s constituents, the fruit, as direct descendants of this (General Health Panel) branch (Tier 3). Examples of the results being CBC - Hemoglobin, CBC - Hematocrit, CMP - Sodium, CMP - Potassium, TSH etc. + original- val:In order to record the values of the results returned you have to create a separate Discrete Result (Tier 4) for each of the panel's constituents, the fruit, as direct descendants of this (General Health Panel) branch (Tier 3). Examples of the results being CBC - Hemoglobin, CBC - Hematocrit, CMP - Sodium, CMP - Potassium, TSH etc. + spreadsheet- ID:5294 val:In order to record the values of the results returned you have to create a separate Discrete Result (Tier 4) for each of the panel\'s constituents, the fruit, as direct descendants of this (General Health Panel) branch (Tier 3). Examples of the results being CBC - Hemoglobin, CBC - Hematocrit, CMP - Sodium, CMP - Potassium, TSH etc. Following constant not same: original- val:In the 'Post Item' section that is displayed at the top you may enter a source (e.g. check number), pay date and check amount. The reason for the source and pay date is so that you don\'t have to enter them over and over again for each claim. The amount that you enter will be decreased for each invoice that is given part of the payment, and hopefully will end at zero when you are done. spreadsheet- ID:5304 val:In the \'Post Item\' section that is displayed at the top you may enter a source (e.g. check number), pay date and check amount. The reason for the source and pay date is so that you don\'t have to enter them over and over again for each claim. The amount that you enter will be decreased for each invoice that is given part of the payment, and hopefully will end at zero when you are done. @@ -899,8 +899,8 @@ Following constant not same: original- val:Justify each CPT code with one or more justifications using the dropdown box. These will reflect the diagnosis codes that was previously selected in 'Select Codes' spreadsheet- ID:5787 val:Justify each CPT code with one or more justifications using the dropdown box. These will reflect the diagnosis codes that was previously selected in \'Select Codes\' Following constant not same: - original- val:k, here's the rest - spreadsheet- ID:5791 val:k, here\'s the rest + original- val:k, here's the rest + spreadsheet- ID:5791 val:k, here\'s the rest Following constant not same: original- val:Lets you delete a line or row. Hit 'Refresh' and the line will have a strikethrough across it spreadsheet- ID:6016 val:Lets you delete a line or row. Hit \'Refresh\' and the line will have a strikethrough across it @@ -923,8 +923,8 @@ Following constant not same: original- val:Note there is no 'Save' button. spreadsheet- ID:7245 val:Note there is no \'Save\' button. Following constant not same: - original- val:NOTE: Uploading files with duplicate names will cause the files to be automatically renamed. For example 'file.jpg' will become 'file.jpg.1'. Filenames are considered unique per patient, not per category. - spreadsheet- ID:7260 val:NOTE: Uploading files with duplicate names will cause the files to be automatically renamed. For example \'file.jpg\' will become \'file.jpg.1\'. Filenames are considered unique per patient, not per category. + original- val:NOTE: Uploading files with duplicate names will cause the files to be automatically renamed. For example 'file.jpg' will become 'file.jpg.1'. Filenames are considered unique per patient, not per category. + spreadsheet- ID:7260 val:NOTE: Uploading files with duplicate names will cause the files to be automatically renamed. For example \'file.jpg\' will become \'file.jpg.1\'. Filenames are considered unique per patient, not per category. Following constant not same: original- val:NPI - Enter the Provider's unique 10-digit National Provider Identifier or NPI identification number spreadsheet- ID:7312 val:NPI - Enter the Provider\'s unique 10-digit National Provider Identifier or NPI identification number @@ -1055,8 +1055,8 @@ Following constant not same: original- val:The user's actual privileges are determined by the access to the parts of the program i.e. (ACO) that each group (ARO) has. spreadsheet- ID:11294 val:The user\'s actual privileges are determined by the access to the parts of the program i.e. (ACO) that each group (ARO) has. Following constant not same: - original- val:The X12 files as well as the resulting HTML output reports are archived in the "era" subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. The URL is - spreadsheet- ID:11304 val:The X12 files as well as the resulting HTML output reports are archived in the \"era\" subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. The URL is + original- val:The X12 files as well as the resulting HTML output reports are archived in the "era" subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. The URL is + spreadsheet- ID:11304 val:The X12 files as well as the resulting HTML output reports are archived in the \"era\" subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. The URL is Following constant not same: original- val:The X12 files as well as the resulting HTML output reports are archived in the 'era' subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. spreadsheet- ID:11305 val:The X12 files as well as the resulting HTML output reports are archived in the \'era\' subdirectory of the main OpenEMR installation directory. You will want to refer to these archives from time to time. @@ -1097,8 +1097,8 @@ Following constant not same: original- val:To fully delete hit 'Save' spreadsheet- ID:11718 val:To fully delete hit \'Save\' Following constant not same: - original- val:To get started you choose one of the two radio buttons. 'Invoice Search' or 'ERA Upload' - spreadsheet- ID:11719 val:To get started you choose one of the two radio buttons. \'Invoice Search\' or \'ERA Upload\' + original- val:To get started you choose one of the two radio buttons. 'Invoice Search' or 'ERA Upload' + spreadsheet- ID:11719 val:To get started you choose one of the two radio buttons. \'Invoice Search\' or \'ERA Upload\' Following constant not same: original- val:To include the scanned documents that are a part of the patient's record select the desired records by check the relevant check-boxes spreadsheet- ID:11724 val:To include the scanned documents that are a part of the patient\'s record select the desired records by check the relevant check-boxes @@ -1136,8 +1136,8 @@ Following constant not same: original- val:You have attempted to alter content which is locked. Remove the lock if you want to do this. To unlock, remove the line, '/*lock::*/' spreadsheet- ID:12902 val:You have attempted to alter content which is locked. Remove the lock if you want to do this. To unlock, remove the line, \'/*lock::*/\' Following constant not same: - original- val:" for code - spreadsheet- ID:13072 val:\" for code + original- val:" for code + spreadsheet- ID:13072 val:\" for code Following constant not same: original- val:" is CHECKED in PostCalendar Settings! spreadsheet- ID:13073 val:\" is CHECKED in PostCalendar Settings! diff --git a/contrib/util/language_translations/manuallyRemovedConstants.txt b/contrib/util/language_translations/manuallyRemovedConstants.txt index 06125e6319b1..75be5722fe63 100644 --- a/contrib/util/language_translations/manuallyRemovedConstants.txt +++ b/contrib/util/language_translations/manuallyRemovedConstants.txt @@ -18,4 +18,3 @@ rrorConstants::R cwords($item['row_s tring) { if (typeof top.i18next.t == 'function') { return top.i18next.t( ... - diff --git a/contrib/util/language_translations/sortCleanList.pl b/contrib/util/language_translations/sortCleanList.pl index 30e5eaaa8ba9..0c379403f1d3 100644 --- a/contrib/util/language_translations/sortCleanList.pl +++ b/contrib/util/language_translations/sortCleanList.pl @@ -51,13 +51,13 @@ # remove blankl lines, windows characters, and chomp it my @processInputList1; -foreach my $var (@inputList) { +foreach my $var (@inputList) { chomp($var); # remove ^M characters (windows line feeds) $var =~ s/\r//g; # skip blank lines if ($var eq "") { - next; + next; } # push into new array push(@processInputList1,$var); @@ -70,7 +70,7 @@ print LOGFILE "Redundant variable removed: " . $var . "\n"; } else { - push (@processInputList2, $var); + push (@processInputList2, $var); } } diff --git a/contrib/util/load_fda_drugs.plx b/contrib/util/load_fda_drugs.plx index 7fa5fdd6dec2..66ef510a1718 100755 --- a/contrib/util/load_fda_drugs.plx +++ b/contrib/util/load_fda_drugs.plx @@ -57,9 +57,9 @@ my $countup = 0; ####################################################################### while (my $line = ) { - + my ($ingredients, $dosage_route, $tradename, $applicant, - $strength, $ndaNum, $prodNum, $teCode, $approvalDate, + $strength, $ndaNum, $prodNum, $teCode, $approvalDate, $refDrug, $type, $fullName) = split /~/, $line; # check for existing record diff --git a/contrib/util/load_icd_desc.plx b/contrib/util/load_icd_desc.plx index 75607ee15db5..36c4c2f865ef 100755 --- a/contrib/util/load_icd_desc.plx +++ b/contrib/util/load_icd_desc.plx @@ -145,4 +145,3 @@ if ($DBNAME) { print "\nInserted $countnew rows, updated $countup codes.\n"; $dbh->disconnect; } - diff --git a/contrib/util/undelete_from_log/README.TXT b/contrib/util/undelete_from_log/README.TXT index e5494a388aae..9a4c449f68bf 100644 --- a/contrib/util/undelete_from_log/README.TXT +++ b/contrib/util/undelete_from_log/README.TXT @@ -1,11 +1,11 @@ // Utility developed by Jason Brooks for Medical Information Integration, www.mi-squared.com -// +// -This procedure will restore all records deleted on a given date/time) that are in the log table +This procedure will restore all records deleted on a given date/time) that are in the log table -First, you must look into the admin/logs screen and determine the date that the delete occured on. +First, you must look into the admin/logs screen and determine the date that the delete occured on. -Adjust the time accordingly +Adjust the time accordingly use the mysql monitor: ======================================== @@ -25,5 +25,3 @@ verify insert statements import data: mysql < restore.sql - - diff --git a/contrib/util/undelete_from_log/convert_logcomments.pl b/contrib/util/undelete_from_log/convert_logcomments.pl index 76f3e7f9c2cb..f5091e7b6b14 100644 --- a/contrib/util/undelete_from_log/convert_logcomments.pl +++ b/contrib/util/undelete_from_log/convert_logcomments.pl @@ -17,7 +17,7 @@ # Converts openemr log ouput containing deleted records and # produces the necessary "insert into values ... on duplicate key -# update... " +# update... " # the log table's comments contains all of the deleted records in # "tablename: field1='value1' field2='value2'" form. @@ -30,12 +30,12 @@ # order to be accepted by mysql. # Use like this: -# This procedure will restore all records deleted on a given date/time) that are in the log table +# This procedure will restore all records deleted on a given date/time) that are in the log table +# +# First, you must look into the admin/logs screen and determine the date that the delete occured on. +# +# Adjust the time accordingly # -# First, you must look into the admin/logs screen and determine the date that the delete occured on. -# -# Adjust the time accordingly -# # use the mysql command or similar tool to produce the restore file # ======================================== # mysql @@ -44,20 +44,20 @@ # select distinct comments from log where event like 'delete' and date >=' 00:00:00' and date <= ' 23:59:59'; # ======================================== # exit mysql monitor -# +# # Verify data is correct -# +# # Run: perl convert_logcomments.pl < outfile > restore.sql -# +# # verify insert statements -# +# # To import data: # # mysql < restore.sql -# +# use strict; - + # %deleted is a hash that holds the read in values from the file on the # command line. my %deleted; @@ -114,7 +114,7 @@ next if ( m/^mysql/i ); next if ( m/^\+/ ); next if ( m/\|\s+comments\s+\|\s*$/ ); - next if ( m/^\s*$/ ); + next if ( m/^\s*$/ ); next if ( m/^\d+\s+rows in/ ); s/^\|\s*//; s/\s+\|\s*$//; @@ -126,7 +126,7 @@ # nuke extra white space between quotes $entry =~ s/'(\s+)'/''/g; - #debugging output + #debugging output if ( 0 ) { print "tablename: $table\n"; @@ -140,13 +140,13 @@ local $/=q/'/; chomp $entry; } - + #split the line on single quotes followed by a space @temp = split /' /, $entry; foreach (@temp) { # $field is the table's field name - # $value is the value. + # $value is the value. ($field,$value) = split /=/; $value .= "'"; #un-encode embedded newlines @@ -158,10 +158,10 @@ } $deleted{$table}[$i]{$field}=$value; $tablefields{$table}{$field} = 1; - } + } -} +} #normalized data foreach $table (keys %deleted) @@ -176,7 +176,7 @@ { $deleted{$table}[$i]{$entry} = ""; } - } + } } } @@ -195,7 +195,7 @@ # and this is the middle for $i (0 .. $#{$deleted{$table}} ) - { + { $values[$i]="("; foreach (@fields) { @@ -207,20 +207,20 @@ else { $values[$i] .= $deleted{$table}[$i]{$_} . ","; - } + } } chop $values[$i]; $values[$i] .= "),\n"; } - + #this is the end of the statement # don't forget the "on duplicate key replace" part $sqlpost ="on duplicate key update "; # this composes the rest of $sqlpost foreach (@fields) { - + $sqlpost .= "$_=values($_), "; } chop $sqlpost; diff --git a/custom/assets/README b/custom/assets/README index 6a57d2d056d8..cc063c231438 100644 --- a/custom/assets/README +++ b/custom/assets/README @@ -17,7 +17,3 @@ for example - `` Important! If you plan to upgrade your project with future versions of OpenEMR do not inject major changes to the screens. - - - - diff --git a/custom/assets/css/README b/custom/assets/css/README index 4038246237e7..f6e8815bc20a 100644 --- a/custom/assets/css/README +++ b/custom/assets/css/README @@ -1 +1 @@ -This folder holds custom css files \ No newline at end of file +This folder holds custom css files diff --git a/custom/assets/custom.yaml.example b/custom/assets/custom.yaml.example index d300e44aab2a..300091357091 100644 --- a/custom/assets/custom.yaml.example +++ b/custom/assets/custom.yaml.example @@ -27,5 +27,3 @@ # script: js/fix_messages.js # loadInFile: interface/main/messages/messages.php # - - diff --git a/custom/assets/js/README b/custom/assets/js/README index d3e86f2e422f..7b36933e8307 100644 --- a/custom/assets/js/README +++ b/custom/assets/js/README @@ -1 +1 @@ -This folder holds custom js files \ No newline at end of file +This folder holds custom js files diff --git a/custom/readme_rx_printtofax.txt b/custom/readme_rx_printtofax.txt index 9613d9784840..b13c1923ff9e 100644 --- a/custom/readme_rx_printtofax.txt +++ b/custom/readme_rx_printtofax.txt @@ -10,7 +10,7 @@ feature must be explained and managed at the clinic location and at the clinic's * The follow text is printed on all print-to-faxes as addes security "Please do not accept this prescription unless it was received via facsimile." - + Manual steps: - edit includes/config.php and make sure the following are set: @@ -20,6 +20,6 @@ $GLOBALS['oer_config']['prescriptions']['addendum_file'] = __DIR__ . "/../custom/rx_addendum.txt"; "dr_signature.png" must exist in ./interface/pic/ to have the contents of rx_addendum.txt appear. Note that the pre-existing ability to -add {userid} somewhere in the signature image filename still works. +add {userid} somewhere in the signature image filename still works. -You may edit custom/rx_addendum.txt to be any additional addendum text. +You may edit custom/rx_addendum.txt to be any additional addendum text. diff --git a/docker/library/dockers/dev-php-fpm-5-6-redis/php.ini b/docker/library/dockers/dev-php-fpm-5-6-redis/php.ini index f7e997820afb..6e104bbe0985 100644 --- a/docker/library/dockers/dev-php-fpm-5-6-redis/php.ini +++ b/docker/library/dockers/dev-php-fpm-5-6-redis/php.ini @@ -2031,4 +2031,4 @@ ldap.max_links = -1 ; Local Variables: ; tab-width: 4 -; End: \ No newline at end of file +; End: diff --git a/docker/library/dockers/dev-php-fpm-5-6/php.ini b/docker/library/dockers/dev-php-fpm-5-6/php.ini index 6e816803a3b9..70a16387b295 100644 --- a/docker/library/dockers/dev-php-fpm-5-6/php.ini +++ b/docker/library/dockers/dev-php-fpm-5-6/php.ini @@ -2030,4 +2030,4 @@ ldap.max_links = -1 ; Local Variables: ; tab-width: 4 -; End: \ No newline at end of file +; End: diff --git a/docker/library/ldap-ssl-certs-keys/easy/Dockerfile b/docker/library/ldap-ssl-certs-keys/easy/Dockerfile index d1360312d243..b7104a6986e5 100644 --- a/docker/library/ldap-ssl-certs-keys/easy/Dockerfile +++ b/docker/library/ldap-ssl-certs-keys/easy/Dockerfile @@ -3,4 +3,3 @@ FROM osixia/openldap ADD ca.pem server-cert.pem server-key.pem /container/service/slapd/assets/certs/ - diff --git a/docker/library/ldap-ssl-certs-keys/insane/Dockerfile b/docker/library/ldap-ssl-certs-keys/insane/Dockerfile index d1360312d243..b7104a6986e5 100644 --- a/docker/library/ldap-ssl-certs-keys/insane/Dockerfile +++ b/docker/library/ldap-ssl-certs-keys/insane/Dockerfile @@ -3,4 +3,3 @@ FROM osixia/openldap ADD ca.pem server-cert.pem server-key.pem /container/service/slapd/assets/certs/ - diff --git a/interface/batchcom/batch_navigation.php b/interface/batchcom/batch_navigation.php index 160149580d78..ce8a714899e9 100755 --- a/interface/batchcom/batch_navigation.php +++ b/interface/batchcom/batch_navigation.php @@ -49,4 +49,3 @@ - diff --git a/interface/batchcom/batch_reminders.php b/interface/batchcom/batch_reminders.php index 1dfbddcb5b06..63071ea77d33 100644 --- a/interface/batchcom/batch_reminders.php +++ b/interface/batchcom/batch_reminders.php @@ -114,4 +114,3 @@ - diff --git a/interface/de_identification_forms/de_identification_procedure.sh b/interface/de_identification_forms/de_identification_procedure.sh index 11623b13805e..0136fe5cf29b 100644 --- a/interface/de_identification_forms/de_identification_procedure.sh +++ b/interface/de_identification_forms/de_identification_procedure.sh @@ -1,6 +1,3 @@ #!/bin/bash ########### calls de-identification procedure ########### mysql -u "$2" -p"$3" -h "$1" -D "$4" -e "call de_identification()" - - - diff --git a/interface/de_identification_forms/de_identification_screen2.php b/interface/de_identification_forms/de_identification_screen2.php index 0ae0c95d3b73..1ef71d1e92c1 100644 --- a/interface/de_identification_forms/de_identification_screen2.php +++ b/interface/de_identification_forms/de_identification_screen2.php @@ -291,4 +291,3 @@ ?> - diff --git a/interface/de_identification_forms/re_identification_input_screen.php b/interface/de_identification_forms/re_identification_input_screen.php index 526ba4bbabf7..05391f22db2a 100644 --- a/interface/de_identification_forms/re_identification_input_screen.php +++ b/interface/de_identification_forms/re_identification_input_screen.php @@ -255,4 +255,3 @@ function download_file() - diff --git a/interface/de_identification_forms/re_identification_op_single_patient.php b/interface/de_identification_forms/re_identification_op_single_patient.php index 5bb9a2da6e0e..936b4e3a856b 100644 --- a/interface/de_identification_forms/re_identification_op_single_patient.php +++ b/interface/de_identification_forms/re_identification_op_single_patient.php @@ -210,4 +210,3 @@ ?> - diff --git a/interface/de_identification_forms/re_identification_procedure.sh b/interface/de_identification_forms/re_identification_procedure.sh index 25b3b5cfa1dc..a90f93d90da6 100644 --- a/interface/de_identification_forms/re_identification_procedure.sh +++ b/interface/de_identification_forms/re_identification_procedure.sh @@ -1,6 +1,3 @@ #!/bin/bash ########### calls re-identification procedure ########### mysql -u "$2" -p"$3" -h "$1" -D "$4" -e "call re_identification()" - - - diff --git a/interface/forms/aftercare_plan/info.txt b/interface/forms/aftercare_plan/info.txt index 6e482a24df66..04a804bdcd08 100644 --- a/interface/forms/aftercare_plan/info.txt +++ b/interface/forms/aftercare_plan/info.txt @@ -1 +1 @@ -Aftercare Plan \ No newline at end of file +Aftercare Plan diff --git a/interface/forms/aftercare_plan/table.sql b/interface/forms/aftercare_plan/table.sql index 4ce7ec16c2f8..a0a482545c11 100644 --- a/interface/forms/aftercare_plan/table.sql +++ b/interface/forms/aftercare_plan/table.sql @@ -21,7 +21,6 @@ CREATE TABLE IF NOT EXISTS `form_aftercare_plan` ( `goal_b_emotional_behavioral_conditions_I` text, `goal_c_relapse_potential` text, `goal_c_relapse_potential_I` text, - + PRIMARY KEY (`id`) ) ENGINE=InnoDB; - diff --git a/interface/forms/care_plan/info.txt b/interface/forms/care_plan/info.txt index 88cdce9558f9..a2032ca3d87c 100644 --- a/interface/forms/care_plan/info.txt +++ b/interface/forms/care_plan/info.txt @@ -1 +1 @@ -Care Plan \ No newline at end of file +Care Plan diff --git a/interface/forms/care_plan/save.php b/interface/forms/care_plan/save.php index 7a9f1253d815..f317979a49f6 100644 --- a/interface/forms/care_plan/save.php +++ b/interface/forms/care_plan/save.php @@ -111,9 +111,9 @@ codetext = ?, description = ?, date = ?, - date_end = ?, - proposed_date = ?, - plan_status = ?, + date_end = ?, + proposed_date = ?, + plan_status = ?, care_plan_type = ?, note_related_to = ?, reason_code = ?, diff --git a/interface/forms/care_plan/table.sql b/interface/forms/care_plan/table.sql index 0007eab266a0..1299f1169231 100644 --- a/interface/forms/care_plan/table.sql +++ b/interface/forms/care_plan/table.sql @@ -18,4 +18,3 @@ CREATE TABLE IF NOT EXISTS `form_care_plan` ( `care_plan_type` varchar(30) DEFAULT NULL, `note_related_to` TEXT ) ENGINE=InnoDB; - diff --git a/interface/forms/clinical_instructions/info.txt b/interface/forms/clinical_instructions/info.txt index d0962ac7a243..d021a6eed390 100644 --- a/interface/forms/clinical_instructions/info.txt +++ b/interface/forms/clinical_instructions/info.txt @@ -1 +1 @@ -Clinical Instructions \ No newline at end of file +Clinical Instructions diff --git a/interface/forms/clinical_instructions/table.sql b/interface/forms/clinical_instructions/table.sql index 0f0c151b6f3e..5364a1241ce7 100644 --- a/interface/forms/clinical_instructions/table.sql +++ b/interface/forms/clinical_instructions/table.sql @@ -12,4 +12,3 @@ CREATE TABLE IF NOT EXISTS `form_clinical_instructions` ( `activity` TINYINT DEFAULT 1 NULL, PRIMARY KEY (`id`) )ENGINE=InnoDB; - diff --git a/interface/forms/fee_sheet/contraception_products/css/contraception_products.css b/interface/forms/fee_sheet/contraception_products/css/contraception_products.css index 5874a42eddad..0406efb7874e 100644 --- a/interface/forms/fee_sheet/contraception_products/css/contraception_products.css +++ b/interface/forms/fee_sheet/contraception_products/css/contraception_products.css @@ -3,8 +3,7 @@ To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. */ -/* +/* Created on : Apr 14, 2014, 1:48:10 AM Author : yehster */ - diff --git a/interface/forms/fee_sheet/table.sql b/interface/forms/fee_sheet/table.sql index 8860a3da419a..e7738c5b5332 100644 --- a/interface/forms/fee_sheet/table.sql +++ b/interface/forms/fee_sheet/table.sql @@ -1,2 +1 @@ -- There is no table. - diff --git a/interface/forms/functional_cognitive_status/info.txt b/interface/forms/functional_cognitive_status/info.txt index 455fbe4bf393..5078add4ddfc 100644 --- a/interface/forms/functional_cognitive_status/info.txt +++ b/interface/forms/functional_cognitive_status/info.txt @@ -1 +1 @@ -Functional and Cognitive Status \ No newline at end of file +Functional and Cognitive Status diff --git a/interface/forms/functional_cognitive_status/new.php b/interface/forms/functional_cognitive_status/new.php index 3cf7e37545cf..77f579e9272d 100644 --- a/interface/forms/functional_cognitive_status/new.php +++ b/interface/forms/functional_cognitive_status/new.php @@ -225,4 +225,3 @@ function checkVal(id) { - diff --git a/interface/forms/functional_cognitive_status/table.sql b/interface/forms/functional_cognitive_status/table.sql index ef11c40c8679..1b88c1fa47ad 100644 --- a/interface/forms/functional_cognitive_status/table.sql +++ b/interface/forms/functional_cognitive_status/table.sql @@ -16,4 +16,3 @@ CREATE TABLE IF NOT EXISTS `form_functional_cognitive_status` ( `description` text, `external_id` VARCHAR(30) DEFAULT NULL ) ENGINE=InnoDB; - diff --git a/interface/forms/gad7/gad7_javasrc.js b/interface/forms/gad7/gad7_javasrc.js index 1c827e792a4b..45070ec70149 100644 --- a/interface/forms/gad7/gad7_javasrc.js +++ b/interface/forms/gad7/gad7_javasrc.js @@ -14,7 +14,7 @@ var no_qs = 8; // number of questions in the form // 'cause the server side doesn't parse this file and execute the php before sending to client var all_scores = [0,0,0,0,0,0,0,0]; -var changes_made = false; +var changes_made = false; var q8_gone = true; // if question 8 has been removed - or on startup when it's not displayed automatically var question = null; //the element that holds the 8th question var all_answered = [false, false, false, false, false, false, false]; @@ -73,7 +73,7 @@ function update_score(index, new_score) { //index is the number of the question var score = new_score; var explanation =''; var total_string = ''; - + if (index == 'undef'){ // display score - called from view on startup - 'new_score' is previous total gad7_score = score; @@ -123,4 +123,3 @@ function update_score(index, new_score) { //index is the number of the question function record_score_q8 (score) { all_scores[7] = Number(score); // record the scores for a review/edit of the form } - diff --git a/interface/forms/gad7/info.txt b/interface/forms/gad7/info.txt index 1aba2c932204..8e735a37a585 100644 --- a/interface/forms/gad7/info.txt +++ b/interface/forms/gad7/info.txt @@ -1,3 +1,2 @@ GAD-7 Clinical - diff --git a/interface/forms/group_attendance/info.txt b/interface/forms/group_attendance/info.txt index 3ba5367789e5..569a554d56da 100644 --- a/interface/forms/group_attendance/info.txt +++ b/interface/forms/group_attendance/info.txt @@ -1 +1 @@ -Group Attendance Form \ No newline at end of file +Group Attendance Form diff --git a/interface/forms/group_attendance/table.sql b/interface/forms/group_attendance/table.sql index 1f12d6a2f157..0b404fd85b32 100644 --- a/interface/forms/group_attendance/table.sql +++ b/interface/forms/group_attendance/table.sql @@ -10,4 +10,4 @@ CREATE TABLE IF NOT EXISTS `form_group_attendance` ( PRIMARY KEY (`id`) ) ENGINE=InnoDB; # enable form to therapy group and not for patient -UPDATE `registry` SET `category` = 'Clinical' ,`patient_encounter`= 0 , `therapy_group_encounter`= 1 WHERE `directory` = 'group_attendance'; \ No newline at end of file +UPDATE `registry` SET `category` = 'Clinical' ,`patient_encounter`= 0 , `therapy_group_encounter`= 1 WHERE `directory` = 'group_attendance'; diff --git a/interface/forms/note/info.txt b/interface/forms/note/info.txt index d4167a74a325..7d5deb00e24a 100644 --- a/interface/forms/note/info.txt +++ b/interface/forms/note/info.txt @@ -1 +1 @@ -Work/School Note +Work/School Note diff --git a/interface/forms/observation/table.sql b/interface/forms/observation/table.sql index fcda8ba0bae2..f4623b3c9687 100644 --- a/interface/forms/observation/table.sql +++ b/interface/forms/observation/table.sql @@ -41,4 +41,3 @@ CREATE TABLE `form_observation` ( KEY `idx_pid_encounter` (`pid`, `encounter`), KEY `idx_date` (`date`) ) ENGINE=InnoDB; - diff --git a/interface/forms/painmap/info.txt b/interface/forms/painmap/info.txt index ae60477d2f96..aa02e483d024 100644 --- a/interface/forms/painmap/info.txt +++ b/interface/forms/painmap/info.txt @@ -1 +1 @@ -Graphic Pain Map \ No newline at end of file +Graphic Pain Map diff --git a/interface/forms/painmap/templates/README.TXT b/interface/forms/painmap/templates/README.TXT index ef38f6f6f374..6e3516b7ced5 100644 --- a/interface/forms/painmap/templates/README.TXT +++ b/interface/forms/painmap/templates/README.TXT @@ -9,10 +9,8 @@ Copy any PNG image you prefer in it's place prior to entering actual form data as the XY coordinates will not align correctly after the fact. -The image should be no more than 600 pixels wide to +The image should be no more than 600 pixels wide to fit nicely on the enounter page. contributed by www.mi-squared.com Images taken and modifed from painxchange.com.au and www.mydoctor4.me - - diff --git a/interface/forms/phq9/info.txt b/interface/forms/phq9/info.txt index c291a11b34c9..f168acb8899f 100644 --- a/interface/forms/phq9/info.txt +++ b/interface/forms/phq9/info.txt @@ -1,3 +1,2 @@ PHQ-9 Clinical - diff --git a/interface/forms/phq9/phq9_javasrc.js b/interface/forms/phq9/phq9_javasrc.js index afb4b8008db5..3ca86e4dd735 100644 --- a/interface/forms/phq9/phq9_javasrc.js +++ b/interface/forms/phq9/phq9_javasrc.js @@ -137,4 +137,3 @@ function record_score_q10(score) { all_scores[9] = Number(score); // record the scores for a review/edit of the form } - diff --git a/interface/forms/procedure_order/handle_deletions.php b/interface/forms/procedure_order/handle_deletions.php index ef5a59b96112..e92eccf433ab 100644 --- a/interface/forms/procedure_order/handle_deletions.php +++ b/interface/forms/procedure_order/handle_deletions.php @@ -62,14 +62,14 @@ function deleteProcedure() try { // Delete procedure answers (QOE) sqlStatement( - "DELETE FROM procedure_answers + "DELETE FROM procedure_answers WHERE procedure_order_id = ? AND procedure_order_seq = ?", [$orderId, $orderSeq] ); // Soft delete specimens (set deleted = 1) sqlStatement( - "UPDATE procedure_specimen + "UPDATE procedure_specimen SET deleted = 1, updated_by = ? WHERE procedure_order_id = ? AND procedure_order_seq = ?", [($_SESSION['authUserID'] ?? null), $orderId, $orderSeq] @@ -77,7 +77,7 @@ function deleteProcedure() // Hard delete the procedure order code sqlStatement( - "DELETE FROM procedure_order_code + "DELETE FROM procedure_order_code WHERE procedure_order_id = ? AND procedure_order_seq = ?", [$orderId, $orderSeq] ); @@ -121,7 +121,7 @@ function deleteSpecimen() try { sqlStatement( - "UPDATE procedure_specimen + "UPDATE procedure_specimen SET deleted = 1, updated_by = ? WHERE procedure_specimen_id = ?", [($_SESSION['authUserID'] ?? null), $specimenId] diff --git a/interface/forms/procedure_order/procedure_order_save_functions.php b/interface/forms/procedure_order/procedure_order_save_functions.php index 45545432e70a..667ff322a7bc 100644 --- a/interface/forms/procedure_order/procedure_order_save_functions.php +++ b/interface/forms/procedure_order/procedure_order_save_functions.php @@ -24,8 +24,8 @@ function saveProcedureOrderCodes($formid, $postData): array // Track existing order codes by sequence $existingCodes = []; $existingQuery = sqlStatement( - "SELECT procedure_order_seq - FROM procedure_order_code + "SELECT procedure_order_seq + FROM procedure_order_code WHERE procedure_order_id = ? ORDER BY procedure_order_seq", [$formid] @@ -101,8 +101,8 @@ function saveProcedureOrderCodes($formid, $postData): array } else { // INSERT new record - get next sequence $order_seq_result = sqlQuery( - "SELECT IFNULL(MAX(procedure_order_seq), 0) + 1 AS seq - FROM procedure_order_code + "SELECT IFNULL(MAX(procedure_order_seq), 0) + 1 AS seq + FROM procedure_order_code WHERE procedure_order_id = ?", [$formid] ); @@ -175,9 +175,9 @@ function saveProcedureSpecimens($formid, $order_seq, $postData, $index): void // Get existing ACTIVE specimens for this order line $existingSpecimens = []; $existingQuery = sqlStatement( - "SELECT procedure_specimen_id, uuid - FROM procedure_specimen - WHERE procedure_order_id = ? + "SELECT procedure_specimen_id, uuid + FROM procedure_specimen + WHERE procedure_order_id = ? AND procedure_order_seq = ? ORDER BY procedure_specimen_id", @@ -287,9 +287,9 @@ function softDeleteRemovedSpecimens($formid, $order_seq, $processedIds): void if (empty($processedIds)) { // Mark all as deleted sqlStatement( - "UPDATE procedure_specimen + "UPDATE procedure_specimen SET deleted = 1, updated_by = ? - WHERE procedure_order_id = ? + WHERE procedure_order_id = ? AND procedure_order_seq = ? AND deleted = 0", [($_SESSION['authUserID'] ?? null), $formid, $order_seq] @@ -301,9 +301,9 @@ function softDeleteRemovedSpecimens($formid, $order_seq, $processedIds): void $params = array_merge([($_SESSION['authUserID'] ?? null), $formid, $order_seq], $processedIds); sqlStatement( - "UPDATE procedure_specimen + "UPDATE procedure_specimen SET deleted = 1, updated_by = ? - WHERE procedure_order_id = ? + WHERE procedure_order_id = ? AND procedure_order_seq = ? AND deleted = 0 AND procedure_specimen_id NOT IN ($placeholders)", @@ -330,7 +330,7 @@ function getOrCreateProcedureType($postData, $index): ?int $ptid = (int)($result_types['procedure_type_id'] ?? 0); if ($ptid === 0) { - $query_insert = 'INSERT INTO procedure_type(name, lab_id, procedure_code, procedure_type, activity, procedure_type_name) + $query_insert = 'INSERT INTO procedure_type(name, lab_id, procedure_code, procedure_type, activity, procedure_type_name) VALUES (?, ?, ?, ?, ?, ?)'; $ptid = sqlInsert( $query_insert, @@ -375,7 +375,7 @@ function updateProcedureOrderCode($formid, $seq, $data, $ptid): void reason_date_low = ?, reason_date_high = ?, reason_status = ? - WHERE procedure_order_id = ? + WHERE procedure_order_id = ? AND procedure_order_seq = ?", [ $data['diagnoses'], @@ -417,8 +417,8 @@ function deleteRemovedOrderCodes($formid, $processedSequences): void $params = array_merge([$formid], $processedSequences); sqlStatement( - "DELETE FROM procedure_order_code - WHERE procedure_order_id = ? + "DELETE FROM procedure_order_code + WHERE procedure_order_id = ? AND procedure_order_seq NOT IN ($placeholders)", $params ); @@ -551,8 +551,8 @@ function deleteRemovedSpecimens($formid, $order_seq, $processedIds): void if (empty($processedIds)) { // If no specimens processed, delete all for this line sqlStatement( - "DELETE FROM procedure_specimen - WHERE procedure_order_id = ? + "DELETE FROM procedure_specimen + WHERE procedure_order_id = ? AND procedure_order_seq = ?", [$formid, $order_seq] ); @@ -563,8 +563,8 @@ function deleteRemovedSpecimens($formid, $order_seq, $processedIds): void $params = array_merge([$formid, $order_seq], $processedIds); sqlStatement( - "DELETE FROM procedure_specimen - WHERE procedure_order_id = ? + "DELETE FROM procedure_specimen + WHERE procedure_order_id = ? AND procedure_order_seq = ? AND procedure_specimen_id NOT IN ($placeholders)", $params @@ -586,21 +586,21 @@ function saveProcedureAnswers($formid, $poseq, $ptid, $postData, $index): void $prefix = "ans$index" . "_"; $qres = sqlStatement( - "SELECT + "SELECT q.procedure_code, q.question_code, q.options, q.fldtype - FROM + FROM procedure_type AS t - JOIN - procedure_questions AS q + JOIN + procedure_questions AS q ON q.lab_id = t.lab_id AND q.procedure_code = t.procedure_code AND q.activity = 1 - WHERE + WHERE t.procedure_type_id = ? - ORDER BY + ORDER BY q.seq, q.question_text", [$ptid] ); @@ -630,16 +630,16 @@ function saveProcedureAnswers($formid, $poseq, $ptid, $postData, $index): void foreach ($data as $datum) { sqlBeginTrans(); $answer_seq = sqlQuery( - "SELECT IFNULL(MAX(answer_seq), 0) + 1 AS increment - FROM procedure_answers - WHERE procedure_order_id = ? - AND procedure_order_seq = ? + "SELECT IFNULL(MAX(answer_seq), 0) + 1 AS increment + FROM procedure_answers + WHERE procedure_order_id = ? + AND procedure_order_seq = ? AND question_code = ?", [$formid, $poseq, $qcode] ); sqlStatement( - "INSERT INTO procedure_answers SET + "INSERT INTO procedure_answers SET procedure_order_id = ?, procedure_order_seq = ?, question_code = ?, diff --git a/interface/forms/procedure_order/table.sql b/interface/forms/procedure_order/table.sql index ed6644738ea9..25cc8edc1508 100644 --- a/interface/forms/procedure_order/table.sql +++ b/interface/forms/procedure_order/table.sql @@ -1,2 +1 @@ -- Tables supporting procedure orders are already defined at installation. - diff --git a/interface/forms/questionnaire_assessments/assets/styles/styles_openemr_lforms.css b/interface/forms/questionnaire_assessments/assets/styles/styles_openemr_lforms.css index 8b9de3825ed9..03e5bf36ee48 100644 --- a/interface/forms/questionnaire_assessments/assets/styles/styles_openemr_lforms.css +++ b/interface/forms/questionnaire_assessments/assets/styles/styles_openemr_lforms.css @@ -12457,4 +12457,4 @@ input.search_field, textarea.search_field { padding-right: .75em } -/*# sourceMappingURL=styles.css.map*/ \ No newline at end of file +/*# sourceMappingURL=styles.css.map*/ diff --git a/interface/forms/requisition/info.txt b/interface/forms/requisition/info.txt index e71281ad51eb..8d8767bbd164 100644 --- a/interface/forms/requisition/info.txt +++ b/interface/forms/requisition/info.txt @@ -1 +1 @@ -Lab Requisition \ No newline at end of file +Lab Requisition diff --git a/interface/forms/requisition/new.php b/interface/forms/requisition/new.php index 424472a2eff6..5d3f313f4ccc 100644 --- a/interface/forms/requisition/new.php +++ b/interface/forms/requisition/new.php @@ -373,4 +373,3 @@ function printDiv(divname) - diff --git a/interface/forms/requisition/table.sql b/interface/forms/requisition/table.sql index 3237fa1f3b71..c6350d5e594a 100644 --- a/interface/forms/requisition/table.sql +++ b/interface/forms/requisition/table.sql @@ -8,4 +8,3 @@ CREATE TABLE `requisition` ( `pid` int(11) NOT NULL, `lab_id` bigint(35) NOT NULL ) ENGINE=InnoDB; - diff --git a/interface/forms/ros/table.sql b/interface/forms/ros/table.sql index 6362913f2e1a..1212391c8f3b 100755 --- a/interface/forms/ros/table.sql +++ b/interface/forms/ros/table.sql @@ -143,4 +143,3 @@ CREATE TABLE `form_ros` ( `hai_status` varchar(3) NOT NULL default 'N/A', PRIMARY KEY (id) ) ENGINE=InnoDB; - diff --git a/interface/forms/track_anything/readme.txt b/interface/forms/track_anything/readme.txt index 459922a6b861..6327cf39519d 100644 --- a/interface/forms/track_anything/readme.txt +++ b/interface/forms/track_anything/readme.txt @@ -15,4 +15,3 @@ If some Tracks are configured... * select "Track anything" * select the desired track * enter your data - diff --git a/interface/forms/track_anything/table.sql b/interface/forms/track_anything/table.sql index 2646366364bb..85ec3ec65563 100644 --- a/interface/forms/track_anything/table.sql +++ b/interface/forms/track_anything/table.sql @@ -27,4 +27,3 @@ CREATE TABLE IF NOT EXISTS form_track_anything_type ( active int(11) DEFAULT NULL, PRIMARY KEY (track_anything_type_id) ) ENGINE=InnoDB; - diff --git a/interface/forms/transfer_summary/info.txt b/interface/forms/transfer_summary/info.txt index 7997771b2428..1af2b04f1aa9 100644 --- a/interface/forms/transfer_summary/info.txt +++ b/interface/forms/transfer_summary/info.txt @@ -1 +1 @@ -Transfer Summary \ No newline at end of file +Transfer Summary diff --git a/interface/forms/transfer_summary/table.sql b/interface/forms/transfer_summary/table.sql index 782f0c7f3be4..ae931aede339 100644 --- a/interface/forms/transfer_summary/table.sql +++ b/interface/forms/transfer_summary/table.sql @@ -20,4 +20,3 @@ CREATE TABLE IF NOT EXISTS `form_transfer_summary` ( `overall_status_of_discharge` text, PRIMARY KEY (`id`) ) ENGINE=InnoDB; - diff --git a/interface/forms/treatment_plan/info.txt b/interface/forms/treatment_plan/info.txt index 2c754fef760d..4fdff3ba6817 100644 --- a/interface/forms/treatment_plan/info.txt +++ b/interface/forms/treatment_plan/info.txt @@ -1 +1 @@ -Treatment Plan \ No newline at end of file +Treatment Plan diff --git a/interface/forms/vitals/growthchart/page1.css b/interface/forms/vitals/growthchart/page1.css index f4060cd75d8c..c2abe955e5d5 100644 --- a/interface/forms/vitals/growthchart/page1.css +++ b/interface/forms/vitals/growthchart/page1.css @@ -1,4 +1,4 @@ -/* required for css-html growth chart in chart.php */ +/* required for css-html growth chart in chart.php */ div#page1 { display: inline; visibility: visible; diff --git a/interface/forms/vitals/templates/vitals/vitals_actions.html.twig b/interface/forms/vitals/templates/vitals/vitals_actions.html.twig index 6971625a5a86..47ffbef9af6c 100644 --- a/interface/forms/vitals/templates/vitals/vitals_actions.html.twig +++ b/interface/forms/vitals/templates/vitals/vitals_actions.html.twig @@ -1 +1 @@ - \ No newline at end of file + diff --git a/interface/forms/vitals/templates/vitals/vitals_notes.html.twig b/interface/forms/vitals/templates/vitals/vitals_notes.html.twig index 4b0540a96cae..45bded79ae08 100644 --- a/interface/forms/vitals/templates/vitals/vitals_notes.html.twig +++ b/interface/forms/vitals/templates/vitals/vitals_notes.html.twig @@ -22,4 +22,4 @@ {% endif %} {% endfor %} - \ No newline at end of file + diff --git a/interface/forms/vitals/vitals.js b/interface/forms/vitals/vitals.js index 46b3c0e00890..a996bbc5a2e7 100644 --- a/interface/forms/vitals/vitals.js +++ b/interface/forms/vitals/vitals.js @@ -308,4 +308,4 @@ function calculateBMI() { else { bmiNode.value = ""; } -} \ No newline at end of file +} diff --git a/interface/language/lang.info.html b/interface/language/lang.info.html index 40ad7ed3f8f9..913deaafed31 100644 --- a/interface/language/lang.info.html +++ b/interface/language/lang.info.html @@ -88,4 +88,3 @@ refer to openemr/library/translation.inc.php for more details. - diff --git a/interface/main/calendar/modules/PostCalendar/COPYING b/interface/main/calendar/modules/PostCalendar/COPYING index 24d9ef04ca25..589ce5be28cd 100644 --- a/interface/main/calendar/modules/PostCalendar/COPYING +++ b/interface/main/calendar/modules/PostCalendar/COPYING @@ -278,4 +278,3 @@ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS - diff --git a/interface/main/calendar/modules/PostCalendar/README b/interface/main/calendar/modules/PostCalendar/README index 55201112c509..0536b5bce2d3 100644 --- a/interface/main/calendar/modules/PostCalendar/README +++ b/interface/main/calendar/modules/PostCalendar/README @@ -45,7 +45,7 @@ Thanks to PostNuke for making a great product for which to work with. Thanks to all you users out there for using this program, sending in feature request and complaining about the bugs :) It's been a great help!!! - + ======================================================================== Contact ======================================================================== diff --git a/interface/main/calendar/modules/PostCalendar/pntemplates/default/views/week/default.html b/interface/main/calendar/modules/PostCalendar/pntemplates/default/views/week/default.html index dd4884db8f6d..201827a08f90 100644 --- a/interface/main/calendar/modules/PostCalendar/pntemplates/default/views/week/default.html +++ b/interface/main/calendar/modules/PostCalendar/pntemplates/default/views/week/default.html @@ -5,4 +5,4 @@ [-include file="$TPL_NAME/views/week_print/outlook_ajax_template.html"-] [-else-] [-include file="$TPL_NAME/views/week/ajax_template.html"-] - [-/if-] \ No newline at end of file + [-/if-] diff --git a/interface/main/messages/js/reminder_appts.js b/interface/main/messages/js/reminder_appts.js index 80eede738375..9b5b05747776 100644 --- a/interface/main/messages/js/reminder_appts.js +++ b/interface/main/messages/js/reminder_appts.js @@ -426,4 +426,3 @@ $(function () { }); }); - diff --git a/interface/main/messages/js/trusted-messages.js b/interface/main/messages/js/trusted-messages.js index 1992d9e0407e..c6702383333a 100644 --- a/interface/main/messages/js/trusted-messages.js +++ b/interface/main/messages/js/trusted-messages.js @@ -238,4 +238,4 @@ // we add these to the global scope as the patient dialog popups need to be able to find them. window.setpatient = setpatient; window.setSelectedDocument = setSelectedDocument; -})(window); \ No newline at end of file +})(window); diff --git a/interface/main/tabs/js/application_view_model.js b/interface/main/tabs/js/application_view_model.js index 2ed9cdd9cdf1..5ba00bfcce37 100644 --- a/interface/main/tabs/js/application_view_model.js +++ b/interface/main/tabs/js/application_view_model.js @@ -22,4 +22,4 @@ app_view_model.application_data.therapy_group=ko.observable(null); app_view_model.attendant_template_type=ko.observable('patient-data-template'); -app_view_model.responsiveDisplay=null; \ No newline at end of file +app_view_model.responsiveDisplay=null; diff --git a/interface/main/tabs/menu/menus/answering_service.json b/interface/main/tabs/menu/menus/answering_service.json index 90a3d64e0bb1..8cb16dec5ff0 100644 --- a/interface/main/tabs/menu/menus/answering_service.json +++ b/interface/main/tabs/menu/menus/answering_service.json @@ -118,4 +118,4 @@ ], "requirement": 0 } -] \ No newline at end of file +] diff --git a/interface/main/tabs/menu/menus/chart_review.json b/interface/main/tabs/menu/menus/chart_review.json index d7b368a73a6d..2b2387e2bae9 100644 --- a/interface/main/tabs/menu/menus/chart_review.json +++ b/interface/main/tabs/menu/menus/chart_review.json @@ -25,4 +25,4 @@ "pat_rep" ] } -] \ No newline at end of file +] diff --git a/interface/modules/custom_modules/oe-module-claimrev-connect/CHANGELOG.md b/interface/modules/custom_modules/oe-module-claimrev-connect/CHANGELOG.md index 40028b7a515a..575a1efa9d53 100644 --- a/interface/modules/custom_modules/oe-module-claimrev-connect/CHANGELOG.md +++ b/interface/modules/custom_modules/oe-module-claimrev-connect/CHANGELOG.md @@ -1,4 +1,2 @@ # 1.0.12 Added new setup helpers to stop the sftp service from interfering with the file sending service of this module. - - diff --git a/interface/modules/custom_modules/oe-module-claimrev-connect/README.md b/interface/modules/custom_modules/oe-module-claimrev-connect/README.md index dd381e58a2ed..fa279aad6484 100644 --- a/interface/modules/custom_modules/oe-module-claimrev-connect/README.md +++ b/interface/modules/custom_modules/oe-module-claimrev-connect/README.md @@ -1,5 +1,5 @@ # ClaimRev Connect Module for OpenEMR -This module creates the connetion the the Claim Revolution, LLC clearinghouse. Using rest API's the module will send your claim file in for processing and download the 999/277 files to the appropriate location on the OpenEMR system. +This module creates the connetion the the Claim Revolution, LLC clearinghouse. Using rest API's the module will send your claim file in for processing and download the 999/277 files to the appropriate location on the OpenEMR system. The module also handles the real-time eligibility of your patients. There are multiple ways this can be accomplished.
  • Manual – In the patient card a new card is created that lets the user manually check for eligibility from Claim Revolution.
  • @@ -8,7 +8,7 @@ The module also handles the real-time eligibility of your patients. There are mu Under the menu option for the module the user can do a simple search for claims submitted to the clearinghouse and view the statuses attached to those claims. ## Getting Started -Please to go to www.claimrev.com to get the required information to setup the module. A ClientID and Client Secret are required to get the module to do something. Once those are setup, you should see your account number listed in debug tab on the module's system menu. +Please to go to www.claimrev.com to get the required information to setup the module. A ClientID and Client Secret are required to get the module to do something. Once those are setup, you should see your account number listed in debug tab on the module's system menu. The module will create a new table to store the eligibility request and response JSON. Entries are created in the background_services table to enable:
    @@ -16,9 +16,7 @@ The module will create a new table to store the eligibility request and response
  • Sending the claim files
  • Getting reports
  • Send and Receive eligibility
  • -
+ ## Contributing If you would like to help with improving this module post an issue on Github or send a pull request. - - diff --git a/interface/modules/custom_modules/oe-module-claimrev-connect/info.txt b/interface/modules/custom_modules/oe-module-claimrev-connect/info.txt index 5fdaab1c0d4e..a7628162ff35 100644 --- a/interface/modules/custom_modules/oe-module-claimrev-connect/info.txt +++ b/interface/modules/custom_modules/oe-module-claimrev-connect/info.txt @@ -1 +1 @@ -ClaimRev Clearinghouse Connector \ No newline at end of file +ClaimRev Clearinghouse Connector diff --git a/interface/modules/custom_modules/oe-module-claimrev-connect/public/claims.php b/interface/modules/custom_modules/oe-module-claimrev-connect/public/claims.php index 48852bc89e9d..104f1d767d0a 100644 --- a/interface/modules/custom_modules/oe-module-claimrev-connect/public/claims.php +++ b/interface/modules/custom_modules/oe-module-claimrev-connect/public/claims.php @@ -321,4 +321,3 @@ - diff --git a/interface/modules/custom_modules/oe-module-claimrev-connect/public/debug-info.php b/interface/modules/custom_modules/oe-module-claimrev-connect/public/debug-info.php index c183b9de2796..b02698f1569d 100644 --- a/interface/modules/custom_modules/oe-module-claimrev-connect/public/debug-info.php +++ b/interface/modules/custom_modules/oe-module-claimrev-connect/public/debug-info.php @@ -58,4 +58,3 @@ - diff --git a/interface/modules/custom_modules/oe-module-claimrev-connect/src/EligibilityData.php b/interface/modules/custom_modules/oe-module-claimrev-connect/src/EligibilityData.php index 63e2bd09a286..ca053d50a9a9 100644 --- a/interface/modules/custom_modules/oe-module-claimrev-connect/src/EligibilityData.php +++ b/interface/modules/custom_modules/oe-module-claimrev-connect/src/EligibilityData.php @@ -164,7 +164,7 @@ public static function getRequiredInsuranceData($pid = 0) LEFT JOIN users AS d on p.providerID = d.id INNER JOIN facility AS f on - f.id = d.facility_id + f.id = d.facility_id WHERE p.pid = ? LIMIT 1"; diff --git a/interface/modules/custom_modules/oe-module-claimrev-connect/table.sql b/interface/modules/custom_modules/oe-module-claimrev-connect/table.sql index d2b809b13752..f22e00673d67 100644 --- a/interface/modules/custom_modules/oe-module-claimrev-connect/table.sql +++ b/interface/modules/custom_modules/oe-module-claimrev-connect/table.sql @@ -12,7 +12,7 @@ CREATE TABLE IF NOT EXISTS `mod_claimrev_eligibility`( ,`last_checked` datetime default NULL ,`create_date` datetime default NULL ,`raw271` LONGTEXT -); +); #IfNotColumnType mod_claimrev_eligibility response_json LONGTEXT ALTER TABLE `mod_claimrev_eligibility` CHANGE `response_json` `response_json` LONGTEXT; @@ -29,8 +29,8 @@ ALTER TABLE `mod_claimrev_eligibility` CHANGE `individual_json` `individual_json #IfNotColumnType mod_claimrev_eligibility raw271 LONGTEXT ALTER TABLE `mod_claimrev_eligibility` CHANGE `raw271` `raw271` LONGTEXT; #EndIf - - + + -- Add the background service for sending claims #IfNotRow background_services name ClaimRev_Send INSERT INTO `background_services` (`name`, `title`, `active`, `running`, `next_run`, `execute_interval`, `function`, `require_once`, `sort_order`) VALUES @@ -46,4 +46,3 @@ INSERT INTO `background_services` (`name`, `title`, `active`, `running`, `next_r INSERT INTO `background_services` (`name`, `title`, `active`, `running`, `next_run`, `execute_interval`, `function`, `require_once`, `sort_order`) VALUES ('ClaimRev_Elig_Send_Receive', 'Send and Receive Eligibility from ClaimRev', 1, 0, '2017-05-09 17:39:10', 1, 'start_send_eligibility', '/interface/modules/custom_modules/oe-module-claimrev-connect/src/Eligibility_ClaimRev_Service.php', 100); #Endif - diff --git a/interface/modules/custom_modules/oe-module-claimrev-connect/templates/additional_info.php b/interface/modules/custom_modules/oe-module-claimrev-connect/templates/additional_info.php index e2b82a8e13a8..7e1320922871 100644 --- a/interface/modules/custom_modules/oe-module-claimrev-connect/templates/additional_info.php +++ b/interface/modules/custom_modules/oe-module-claimrev-connect/templates/additional_info.php @@ -55,4 +55,3 @@ - - - diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/CHANGELOG.md b/interface/modules/custom_modules/oe-module-comlink-telehealth/CHANGELOG.md index 9a855be9d66d..20c6a82228a0 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/CHANGELOG.md +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/CHANGELOG.md @@ -22,9 +22,9 @@ V2.0.0 - Bug Fix - expired sessions would show the launch button on the add edit event screen which would then display an error when clicked - Bug Fix - Launching a second telehealth session in the same day for the same patient would often grab the earlier session for the patient and the patient would be unable to join - Bug Fix - added ACL checks on the room controller action dispatcher to prevent improper access to the api - + v1.2.0 - Added registration code capability for mobile app use - Add App registration and use instructions to patient credentials screen - Moved some of the classes and code around into directory structure for better maintainability -- Added payment and registration support \ No newline at end of file +- Added payment and registration support diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/at-slot.js b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/at-slot.js index 43fb121055ce..290286af5974 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/at-slot.js +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/at-slot.js @@ -110,4 +110,4 @@ export class ATSlot { } } } -} \ No newline at end of file +} diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/caller-slot.js b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/caller-slot.js index 0e6cb51cba39..186c8e7bc4fe 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/caller-slot.js +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/caller-slot.js @@ -254,4 +254,4 @@ export class CallerSlot { this.__videoNode = null; } } -} \ No newline at end of file +} diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/local-caller-slot.js b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/local-caller-slot.js index 6677337cb0e7..300354658e2b 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/local-caller-slot.js +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/local-caller-slot.js @@ -126,4 +126,4 @@ export class LocalCallerSlot { isPinned() { return this.__isPinned; } -} \ No newline at end of file +} diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/presentation-screen.js b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/presentation-screen.js index eec233d0b909..49d592afca7e 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/presentation-screen.js +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/presentation-screen.js @@ -85,4 +85,4 @@ export class PresentationScreen this.callerSlot = null; this.videoElement.srcObject = null; } -} \ No newline at end of file +} diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/video-bar-button.js b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/video-bar-button.js index 594845b703ae..698ab3fa66f8 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/video-bar-button.js +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/src/video-bar-button.js @@ -64,4 +64,4 @@ export function VideoBarButton(node, defaultValue, callback) }; btn.init(); return btn; -} \ No newline at end of file +} diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-calendar.js b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-calendar.js index 812cec43e612..61aaec944dad 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-calendar.js +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-calendar.js @@ -263,4 +263,4 @@ window.addEventListener('DOMContentLoaded', init); // if we are in an outer window we use that one, otherwise we grab the topmost comlink for our translation files -})(window, window.comlink || window.top.comlink || {}); \ No newline at end of file +})(window, window.comlink || window.top.comlink || {}); diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-patient.js b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-patient.js index 75a2f45ee3b8..8eb7330bc785 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-patient.js +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-patient.js @@ -57,4 +57,4 @@ window.addEventListener('load', init); } telehealth.launchThirdPartyPortalDialog = launchDialogForEid; -})(window, window.comlink || {}); \ No newline at end of file +})(window, window.comlink || {}); diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-provider.js b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-provider.js index d7d4a36011b4..0b0d352caa47 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-provider.js +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/public/assets/js/telehealth-provider.js @@ -16,4 +16,4 @@ telehealth.launchRegistrationChecker(false); }); } -})(window, window.comlink || {}); \ No newline at end of file +})(window, window.comlink || {}); diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/sql/table.sql b/interface/modules/custom_modules/oe-module-comlink-telehealth/sql/table.sql index cf90dee23510..3699132205b5 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/sql/table.sql +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/sql/table.sql @@ -94,4 +94,4 @@ ALTER TABLE `comlink_telehealth_auth` ADD COLUMN `app_registration_code` TEXT CO ALTER TABLE `comlink_telehealth_appointment_session` ADD COLUMN `pid_related` BIGINT(20) DEFAULT NULL COMMENT 'Foreign key reference to patient_data.pid for related patient'; ALTER TABLE `comlink_telehealth_appointment_session` ADD COLUMN `patient_related_start_time` DATETIME DEFAULT NULL COMMENT 'Related Patient join time'; ALTER TABLE `comlink_telehealth_appointment_session` ADD COLUMN `patient_related_last_update` DATETIME DEFAULT NULL COMMENT 'Last communication timestamp with related patient'; -#EndIf \ No newline at end of file +#EndIf diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/admin/user_admin-extension.html.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/admin/user_admin-extension.html.twig index 11a4fa233626..29d54a737fc7 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/admin/user_admin-extension.html.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/admin/user_admin-extension.html.twig @@ -29,4 +29,4 @@ - \ No newline at end of file + diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room.twig index 38b959b18292..fee075ffbfc3 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room.twig @@ -91,4 +91,4 @@ -{% include "comlink/conference-room/modal-invite-patient.html.twig" with {thirdPartyPatient: thirdPartyPatient, participants: participantList} %} \ No newline at end of file +{% include "comlink/conference-room/modal-invite-patient.html.twig" with {thirdPartyPatient: thirdPartyPatient, participants: participantList} %} diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room/conference-room-main-layout.html.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room/conference-room-main-layout.html.twig index 40a5fde6d193..f0cbda0cd84d 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room/conference-room-main-layout.html.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room/conference-room-main-layout.html.twig @@ -66,4 +66,4 @@ - \ No newline at end of file + diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room/modal-invite-patient.html.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room/modal-invite-patient.html.twig index e2a09a7a5a94..8ee370c91569 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room/modal-invite-patient.html.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room/modal-invite-patient.html.twig @@ -100,4 +100,4 @@ - \ No newline at end of file + diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room/room-participant-container.html.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room/room-participant-container.html.twig index cc63534b581f..9c889b443d4c 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room/room-participant-container.html.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/conference-room/room-participant-container.html.twig @@ -23,4 +23,4 @@
{{ callerName|default("")|text }} - \ No newline at end of file + diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/emails/telehealth-invitation-new.text.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/emails/telehealth-invitation-new.text.twig index ce47b96c8256..b2bcc07e30b0 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/emails/telehealth-invitation-new.text.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/emails/telehealth-invitation-new.text.twig @@ -14,4 +14,3 @@ {{ "As part of the setup a new account was created for you."|xlt}} {{ "Your account username and temporary password were sent to you in a separate email."|xlt }} {{ "You will be asked to change your temporary password when you first login."|xlt }} - diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/local-participant-container.html.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/local-participant-container.html.twig index b45354f0995f..01de7791c294 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/local-participant-container.html.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/local-participant-container.html.twig @@ -23,4 +23,4 @@
{{ callerName|text }} - \ No newline at end of file + diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/patient-portal.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/patient-portal.twig index 7bf84167c5c9..5a54056d0a64 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/patient-portal.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/patient-portal.twig @@ -14,4 +14,4 @@ {% else %} {% endif %} - \ No newline at end of file + diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/portal/thirdparty.html.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/portal/thirdparty.html.twig index 8002f14ff0dd..cfe81f36bce4 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/portal/thirdparty.html.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/portal/thirdparty.html.twig @@ -109,4 +109,4 @@ })(); {% endif %} -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/telehealth-frontend-settings.js.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/telehealth-frontend-settings.js.twig index 564b1fc92012..440e4044f5ae 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/telehealth-frontend-settings.js.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/telehealth-frontend-settings.js.twig @@ -13,4 +13,4 @@ comlink.translations = comlink.settings.translations; delete comlink.settings.translations; // no point in having it in two places. window.comlink = comlink; -})(window.comlink || {}); \ No newline at end of file +})(window.comlink || {}); diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/video-control-bar.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/video-control-bar.twig index 5ee9147c749b..281f643bda2e 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/video-control-bar.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/video-control-bar.twig @@ -30,4 +30,4 @@ - \ No newline at end of file + diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/waiting-room-patient.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/waiting-room-patient.twig index 73c5ee036318..a02f4ded4e7a 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/waiting-room-patient.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/waiting-room-patient.twig @@ -38,4 +38,4 @@

{{ "We are having problems communicating with the server. Please wait or contact customer support"|xlt }}

- \ No newline at end of file + diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/waiting-room-provider.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/waiting-room-provider.twig index 1c3c93e589ad..64aff10c44dc 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/waiting-room-provider.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/comlink/waiting-room-provider.twig @@ -34,4 +34,4 @@ - \ No newline at end of file + diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/emails/partials/patient/email-message-fhir-access.html.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/emails/partials/patient/email-message-fhir-access.html.twig index fb453b92ce7e..b8076b1b361b 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/emails/partials/patient/email-message-fhir-access.html.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/emails/partials/patient/email-message-fhir-access.html.twig @@ -16,4 +16,4 @@
{{ "3rd Party API Access"|xlt }}

{{ "API Access Address"|xlt }}: {{ fhir_address|text }}

{{ "Technical Requirements Documentation"|xlt }}: {{ fhir_requirements_address|text }}

-

{{ "You can use the above API Address with any app of your choice to access your patient data as long as it meets the technical requirements for our service."|xlt }}

\ No newline at end of file +

{{ "You can use the above API Address with any app of your choice to access your patient data as long as it meets the technical requirements for our service."|xlt }}

diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/emails/partials/patient/email-message-fhir-access.text.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/emails/partials/patient/email-message-fhir-access.text.twig index 95e5c087666c..78944569c240 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/emails/partials/patient/email-message-fhir-access.text.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/emails/partials/patient/email-message-fhir-access.text.twig @@ -17,4 +17,4 @@ {{ "3rd Party API Access"|xlt }} / {{ "3rd Party App Access"|xlt }} {{ "API Access Address"|xlt }}: {{ fhir_address|text }} {{ "Technical Requirements Documentation"|xlt }}: {{ fhir_requirements_address|text }} -{{ "You can use the above API Address with any app of your choice to access your patient data as long as it meets the technical requirements for our service."|xlt }} \ No newline at end of file +{{ "You can use the above API Address with any app of your choice to access your patient data as long as it meets the technical requirements for our service."|xlt }} diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/patient/partials/registration-code.html.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/patient/partials/registration-code.html.twig index 2303b3f738c4..dbd0b7768e48 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/patient/partials/registration-code.html.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/patient/partials/registration-code.html.twig @@ -25,4 +25,4 @@ -{% endif %} \ No newline at end of file +{% endif %} diff --git a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/portal/appointment-item.html.twig b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/portal/appointment-item.html.twig index 57c51cc3182b..56c2296ad9fd 100644 --- a/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/portal/appointment-item.html.twig +++ b/interface/modules/custom_modules/oe-module-comlink-telehealth/templates/portal/appointment-item.html.twig @@ -27,4 +27,4 @@ {% endif %}

- \ No newline at end of file + diff --git a/interface/modules/custom_modules/oe-module-dashboard-context/ModuleManagerListener.php b/interface/modules/custom_modules/oe-module-dashboard-context/ModuleManagerListener.php index 7881a2652a8a..f2afa7498c09 100644 --- a/interface/modules/custom_modules/oe-module-dashboard-context/ModuleManagerListener.php +++ b/interface/modules/custom_modules/oe-module-dashboard-context/ModuleManagerListener.php @@ -99,13 +99,13 @@ private function install($modId, $currentActionStatus): mixed self::setModuleState($modId, '0', '1'); // Create dashboard context globals in the database if they don't exist - $sql = "INSERT INTO `globals` (`gl_name`, `gl_index`, `gl_value`) - VALUES ('dashboard_context_show_widget', 0, '1') + $sql = "INSERT INTO `globals` (`gl_name`, `gl_index`, `gl_value`) + VALUES ('dashboard_context_show_widget', 0, '1') ON DUPLICATE KEY UPDATE `gl_value` = '1'"; QueryUtils::sqlInsert($sql); - $sql = "INSERT INTO `globals` (`gl_name`, `gl_index`, `gl_value`) - VALUES ('dashboard_context_user_can_switch', 0, '1') + $sql = "INSERT INTO `globals` (`gl_name`, `gl_index`, `gl_value`) + VALUES ('dashboard_context_user_can_switch', 0, '1') ON DUPLICATE KEY UPDATE `gl_value` = '1'"; QueryUtils::sqlInsert($sql); @@ -151,13 +151,13 @@ private function enable($modId, $currentActionStatus): mixed self::setModuleState($modId, '1', '0'); // Ensure globals are set in database - $sql = "INSERT INTO `globals` (`gl_name`, `gl_index`, `gl_value`) - VALUES ('dashboard_context_show_widget', 0, '1') + $sql = "INSERT INTO `globals` (`gl_name`, `gl_index`, `gl_value`) + VALUES ('dashboard_context_show_widget', 0, '1') ON DUPLICATE KEY UPDATE `gl_value` = '1'"; QueryUtils::sqlInsert($sql); - $sql = "INSERT INTO `globals` (`gl_name`, `gl_index`, `gl_value`) - VALUES ('dashboard_context_user_can_switch', 0, '1') + $sql = "INSERT INTO `globals` (`gl_name`, `gl_index`, `gl_value`) + VALUES ('dashboard_context_user_can_switch', 0, '1') ON DUPLICATE KEY UPDATE `gl_value` = '1'"; QueryUtils::sqlInsert($sql); diff --git a/interface/modules/custom_modules/oe-module-dashboard-context/info.txt b/interface/modules/custom_modules/oe-module-dashboard-context/info.txt index 2ffffb7ccc8d..3a3f962f193b 100644 --- a/interface/modules/custom_modules/oe-module-dashboard-context/info.txt +++ b/interface/modules/custom_modules/oe-module-dashboard-context/info.txt @@ -1,2 +1 @@ Dashboard Context Service v1.0.0 - diff --git a/interface/modules/custom_modules/oe-module-dashboard-context/src/Bootstrap.php b/interface/modules/custom_modules/oe-module-dashboard-context/src/Bootstrap.php index daa20ea0852e..09044e234987 100644 --- a/interface/modules/custom_modules/oe-module-dashboard-context/src/Bootstrap.php +++ b/interface/modules/custom_modules/oe-module-dashboard-context/src/Bootstrap.php @@ -138,9 +138,9 @@ public function renderPageHeadingWidget(PageHeadingRenderEvent $event): PageHead try { $controller = new ContextWidgetController(); $navHtml = $controller->renderNavbarDropdown(); - + $this->logger->debug("DashboardContext: Appending titleNavContent", ['length' => strlen($navHtml)]); - + // Append HTML content to be injected into the title nav area // This will appear between the page title and the action buttons // Let modules be modules ... diff --git a/interface/modules/custom_modules/oe-module-dashboard-context/src/Services/DashboardContextAdminService.php b/interface/modules/custom_modules/oe-module-dashboard-context/src/Services/DashboardContextAdminService.php index d3a537f3e865..5c1171196a61 100644 --- a/interface/modules/custom_modules/oe-module-dashboard-context/src/Services/DashboardContextAdminService.php +++ b/interface/modules/custom_modules/oe-module-dashboard-context/src/Services/DashboardContextAdminService.php @@ -54,7 +54,7 @@ public function getAllContexts(bool $includeSystem = true): array } } - $sql = "SELECT cd.*, u.username as created_by_username + $sql = "SELECT cd.*, u.username as created_by_username FROM {$this->contextTable} cd LEFT JOIN users u ON cd.user_id = u.id ORDER BY cd.sort_order, cd.context_name"; @@ -96,8 +96,8 @@ public function createContext(array $data, int $createdBy): int|false } $result = QueryUtils::sqlStatementThrowException( - "INSERT INTO {$this->contextTable} - (user_id, context_key, context_name, description, widget_config, is_global, sort_order, created_at, updated_at) + "INSERT INTO {$this->contextTable} + (user_id, context_key, context_name, description, widget_config, is_global, sort_order, created_at, updated_at) VALUES (?, ?, ?, ?, ?, ?, ?, NOW(), NOW())", [ $createdBy, @@ -173,7 +173,7 @@ public function deleteContext(int $contextId): bool /** * Get all users with their current context assignments - * + * * Updated to use the new user_dashboard_context_config table for checking * if user has custom widget configurations. */ @@ -204,7 +204,7 @@ public function getUsersWithContexts(array $filters = []): array // Updated query: removed widget_config from user_dashboard_context // Now we check user_dashboard_context_config for custom configs - $sql = "SELECT + $sql = "SELECT u.id, u.username, u.fname, @@ -258,14 +258,14 @@ public function getUsersWithContexts(array $filters = []): array */ public function getUserContextConfigs(int $userId): array { - $sql = "SELECT context_key, widget_config, created_at, updated_at - FROM {$this->userContextConfigTable} - WHERE user_id = ? + $sql = "SELECT context_key, widget_config, created_at, updated_at + FROM {$this->userContextConfigTable} + WHERE user_id = ? ORDER BY context_key"; - + $result = QueryUtils::sqlStatementThrowException($sql, [$userId]); $configs = []; - + while ($row = QueryUtils::fetchArrayFromResultSet($result)) { $configs[$row['context_key']] = [ 'widget_config' => json_decode((string) $row['widget_config'], true), @@ -273,7 +273,7 @@ public function getUserContextConfigs(int $userId): array 'updated_at' => $row['updated_at'], ]; } - + return $configs; } @@ -305,8 +305,8 @@ public function assignContextToUser(int $userId, string $contextKey, int $assign ); $result = QueryUtils::sqlStatementThrowException( - "INSERT INTO {$this->assignmentTable} - (user_id, context_id, context_key, assigned_by, is_locked, is_active, assigned_at) + "INSERT INTO {$this->assignmentTable} + (user_id, context_id, context_key, assigned_by, is_locked, is_active, assigned_at) VALUES (?, ?, ?, ?, ?, 1, NOW())", [$userId, $contextId, $contextKey, $assignedBy, $isLocked ? 1 : 0] ); @@ -494,7 +494,7 @@ public function isUserContextLocked(int $userId): bool */ public function getContextUsageStats(): array { - $sql = "SELECT + $sql = "SELECT COALESCE(udc.active_context, 'primary_care') as context_key, COUNT(*) as user_count FROM users u @@ -518,7 +518,7 @@ public function getContextUsageStats(): array */ public function getCustomConfigStats(): array { - $sql = "SELECT + $sql = "SELECT context_key, COUNT(DISTINCT user_id) as user_count FROM {$this->userContextConfigTable} @@ -625,9 +625,9 @@ public function getAuditLog(array $filters = [], int $limit = 100): array $params[] = $filters['date_to']; } - $sql = "SELECT al.*, - u.username as user_username, - u.fname as user_fname, + $sql = "SELECT al.*, + u.username as user_username, + u.fname as user_fname, u.lname as user_lname, p.username as performer_username FROM {$this->auditLogTable} al diff --git a/interface/modules/custom_modules/oe-module-dashboard-context/src/Services/DashboardContextService.php b/interface/modules/custom_modules/oe-module-dashboard-context/src/Services/DashboardContextService.php index 206d6e44ee46..049e6a7aafdf 100644 --- a/interface/modules/custom_modules/oe-module-dashboard-context/src/Services/DashboardContextService.php +++ b/interface/modules/custom_modules/oe-module-dashboard-context/src/Services/DashboardContextService.php @@ -288,7 +288,7 @@ public function setActiveContext(int $userId, string $context): bool /** * Get widget visibility configuration for a specific context - * + * * Order of precedence: * 1. User's custom config for this specific context (user_dashboard_context_config) * 2. Custom context definition (dashboard_context_definitions) diff --git a/interface/modules/custom_modules/oe-module-dorn/info.txt b/interface/modules/custom_modules/oe-module-dorn/info.txt index 5a35ef0cbb38..ee7da8e4f695 100644 --- a/interface/modules/custom_modules/oe-module-dorn/info.txt +++ b/interface/modules/custom_modules/oe-module-dorn/info.txt @@ -1 +1 @@ -Diagnostic Ordering Result Network (DORN) \ No newline at end of file +Diagnostic Ordering Result Network (DORN) diff --git a/interface/modules/custom_modules/oe-module-faxsms/README-GUIDE.md b/interface/modules/custom_modules/oe-module-faxsms/README-GUIDE.md index 43dbb839e6cf..430a02b3a0c0 100644 --- a/interface/modules/custom_modules/oe-module-faxsms/README-GUIDE.md +++ b/interface/modules/custom_modules/oe-module-faxsms/README-GUIDE.md @@ -72,8 +72,8 @@ Administrators can now control each user’s access to Fax, SMS, Email, and Voic - **Bulk Toggles** — Enable or disable all services per user or per column. **Permission Hierarchy:** -1. Global service must be enabled. -2. User must have permission for the service. +1. Global service must be enabled. +2. User must have permission for the service. 3. Appropriate credentials (user-specific or primary) are applied. > Changes apply immediately—no restart required. @@ -190,13 +190,13 @@ This module is distributed under the **GNU General Public License v3.0 (GPL-3)** --- ## 📚 References -- **Repository Path:** +- **Repository Path:** `interface/modules/custom_modules/oe-module-faxsms` -- **OpenEMR Forum Topic:** +- **OpenEMR Forum Topic:** [Newly Improved Fax, SMS and Email Module – Community Discussion](https://community.open-emr.org/t/newly-improved-fax-sms-and-email-module/23266) -- **Vendor Docs:** - [RingCentral Developer Portal](https://developer.ringcentral.com) - [etherFAX](https://www.etherfax.net) +- **Vendor Docs:** + [RingCentral Developer Portal](https://developer.ringcentral.com) + [etherFAX](https://www.etherfax.net) [Twilio Docs](https://www.twilio.com/docs) --- @@ -219,8 +219,8 @@ This module is distributed under the **GNU General Public License v3.0 (GPL-3)** --- -**Maintained by:** OpenEMR Community -**Lead Developer:** Jerry Padgett -**Version:** 7.0.4 -**License:** GPL-3 +**Maintained by:** OpenEMR Community +**Lead Developer:** Jerry Padgett +**Version:** 7.0.4 +**License:** GPL-3 **Module Path:** `interface/modules/custom_modules/oe-module-faxsms` diff --git a/interface/modules/custom_modules/oe-module-faxsms/README-SETUP.md b/interface/modules/custom_modules/oe-module-faxsms/README-SETUP.md index be73ed02e78c..1af781bd2e52 100644 --- a/interface/modules/custom_modules/oe-module-faxsms/README-SETUP.md +++ b/interface/modules/custom_modules/oe-module-faxsms/README-SETUP.md @@ -185,4 +185,4 @@ All forms include CSRF tokens for security against cross-site request forgery at - Check service status regularly - Review usage logs if individual accounts are enabled - Monitor vendor account limits and costs -- Verify background services are running as scheduled \ No newline at end of file +- Verify background services are running as scheduled diff --git a/interface/modules/custom_modules/oe-module-faxsms/README.md b/interface/modules/custom_modules/oe-module-faxsms/README.md index e84e6c4dee9c..e6020934ff40 100644 --- a/interface/modules/custom_modules/oe-module-faxsms/README.md +++ b/interface/modules/custom_modules/oe-module-faxsms/README.md @@ -2,7 +2,7 @@ Fax and SMS feature for OpenEMR that currently supports Twilio SMS and etherFAX for faxing. ## Install Module -- To turn on and setup vendor accounts goto the top menu Modules->Manage Modules then click Unregistered button to display all currently unregistered modules. +- To turn on and setup vendor accounts goto the top menu Modules->Manage Modules then click Unregistered button to display all currently unregistered modules. - Find the FaxSMS Module item and click the Register button. - From the Registered tab find and click the Install button then Enable the module. - Once installed, click the far right config icon to display the config panel. diff --git a/interface/modules/custom_modules/oe-module-faxsms/sql/add_fax_patient_columns.sql b/interface/modules/custom_modules/oe-module-faxsms/sql/add_fax_patient_columns.sql index b3eecd541304..05e2d19dd3af 100644 --- a/interface/modules/custom_modules/oe-module-faxsms/sql/add_fax_patient_columns.sql +++ b/interface/modules/custom_modules/oe-module-faxsms/sql/add_fax_patient_columns.sql @@ -4,39 +4,39 @@ -- Add patient_id column for patient association #IfMissingColumn oe_faxsms_queue patient_id -ALTER TABLE `oe_faxsms_queue` +ALTER TABLE `oe_faxsms_queue` ADD COLUMN `patient_id` INT(11) DEFAULT NULL COMMENT 'Patient ID if assigned', ADD INDEX `idx_patient_id` (`patient_id`); #EndIf -- Add document_id column to link to documents table #IfMissingColumn oe_faxsms_queue document_id -ALTER TABLE `oe_faxsms_queue` +ALTER TABLE `oe_faxsms_queue` ADD COLUMN `document_id` INT(11) DEFAULT NULL COMMENT 'Document ID in documents table', ADD INDEX `idx_document_id` (`document_id`); #EndIf -- Add media_path column for local file storage #IfMissingColumn oe_faxsms_queue media_path -ALTER TABLE `oe_faxsms_queue` +ALTER TABLE `oe_faxsms_queue` ADD COLUMN `media_path` VARCHAR(255) DEFAULT NULL COMMENT 'Local path to downloaded fax media'; #EndIf -- Add site_id column for multi-site support #IfMissingColumn oe_faxsms_queue site_id -ALTER TABLE `oe_faxsms_queue` +ALTER TABLE `oe_faxsms_queue` ADD COLUMN `site_id` VARCHAR(63) DEFAULT 'default' COMMENT 'OpenEMR site ID', ADD INDEX `idx_site_id` (`site_id`); #EndIf -- Add status column for better tracking #IfMissingColumn oe_faxsms_queue status -ALTER TABLE `oe_faxsms_queue` +ALTER TABLE `oe_faxsms_queue` ADD COLUMN `status` VARCHAR(31) DEFAULT NULL COMMENT 'Fax status from vendor'; #EndIf -- Add direction column if missing #IfMissingColumn oe_faxsms_queue direction -ALTER TABLE `oe_faxsms_queue` +ALTER TABLE `oe_faxsms_queue` ADD COLUMN `direction` VARCHAR(15) DEFAULT 'inbound' COMMENT 'Fax direction: inbound or outbound'; #EndIf diff --git a/interface/modules/custom_modules/oe-module-faxsms/src/Controller/EtherFaxActions.php b/interface/modules/custom_modules/oe-module-faxsms/src/Controller/EtherFaxActions.php index 3391fd27a146..fbac74767770 100644 --- a/interface/modules/custom_modules/oe-module-faxsms/src/Controller/EtherFaxActions.php +++ b/interface/modules/custom_modules/oe-module-faxsms/src/Controller/EtherFaxActions.php @@ -844,7 +844,7 @@ public function insertSentFaxQueue($faxStatus, string $dialNumber, string $calle $details_encoded = json_encode($details); $sentDate = date('Y-m-d H:i:s'); - $sql = "INSERT INTO `oe_faxsms_queue` (`id`, `uid`, `account`, `job_id`, `date`, `receive_date`, `calling_number`, `called_number`, `mime`, `details_json`) + $sql = "INSERT INTO `oe_faxsms_queue` (`id`, `uid`, `account`, `job_id`, `date`, `receive_date`, `calling_number`, `called_number`, `mime`, `details_json`) VALUES (NULL, ?, ?, ?, current_timestamp(), ?, ?, ?, 'application/pdf', ?)"; return sqlInsert($sql, [$uid, $account, $jobId, $sentDate, $callerId, $dialNumber, $details_encoded]); diff --git a/interface/modules/custom_modules/oe-module-faxsms/src/Controller/FaxDocumentService.php b/interface/modules/custom_modules/oe-module-faxsms/src/Controller/FaxDocumentService.php index 4964e7f8c13b..d1d9133bb4cd 100644 --- a/interface/modules/custom_modules/oe-module-faxsms/src/Controller/FaxDocumentService.php +++ b/interface/modules/custom_modules/oe-module-faxsms/src/Controller/FaxDocumentService.php @@ -32,12 +32,12 @@ public function __construct(?string $siteId = null) $this->siteId = $siteId ?? ($_SESSION['site_id'] ?? 'default'); $this->sitePath = $globals->get('OE_SITE_DIR') ?? ($globals->get('OE_SITES_BASE') . '/' . $this->siteId); $this->receivedFaxesPath = $this->sitePath . '/documents/received_faxes'; - + // Ensure received faxes directory exists if (!file_exists($this->receivedFaxesPath)) { mkdir($this->receivedFaxesPath, 0770, true); } - + $unassignedPath = $this->receivedFaxesPath . '/unassigned'; if (!file_exists($unassignedPath)) { mkdir($unassignedPath, 0770, true); @@ -66,16 +66,16 @@ public function storeFaxDocument( $timestamp = date('YmdHis'); $extension = FileUtils::getExtensionFromMimeType($mimeType); $filename = "fax_{$faxSid}_{$timestamp}.{$extension}"; - + // Determine storage location if ($patientId > 0) { // Get FAX category ID $categoryResult = QueryUtils::querySingleRow("SELECT id FROM categories WHERE name = 'FAX'"); $categoryId = $categoryResult['id'] ?? 1; - + $formattedFrom = $this->formatPhoneDisplay($fromNumber); $owner = $_SESSION['authUserID'] ?? 0; - + // Create and save document using OpenEMR's standard method $document = new Document(); $error = $document->createDocument( @@ -88,20 +88,20 @@ public function storeFaxDocument( 1, // path_depth $owner ); - + if (!empty($error)) { throw new FaxDocumentException("Failed to create document: {$error}"); } - + // Set document name $document->set_name("Fax from {$formattedFrom} - {$timestamp}"); $document->persist(); - + $documentId = $document->get_id(); $mediaPath = $document->get_url(); - + error_log("FaxDocumentService: Stored fax {$faxSid} as document {$documentId} for patient {$patientId}"); - + return [ 'success' => true, 'document_id' => $documentId, @@ -112,9 +112,9 @@ public function storeFaxDocument( // Store in unassigned directory $mediaPath = $this->receivedFaxesPath . '/unassigned/' . $filename; file_put_contents($mediaPath, $mediaContent); - + error_log("FaxDocumentService: Stored unassigned fax {$faxSid} at {$mediaPath}"); - + return [ 'success' => true, 'document_id' => null, @@ -145,48 +145,48 @@ public function assignFaxToPatient(string $faxSid, int $patientId): array "SELECT * FROM oe_faxsms_queue WHERE job_id = ? AND site_id = ?", [$faxSid, $this->siteId] ); - + if (empty($fax)) { throw new FaxNotFoundException("Fax not found: {$faxSid}"); } - + if (!empty($fax['patient_id'])) { throw new FaxDocumentException("Fax already assigned to patient " . $fax['patient_id']); } - + // Read the file from unassigned directory $mediaPath = $fax['media_path']; if (empty($mediaPath) || !file_exists($mediaPath)) { throw new FaxDocumentException("Fax media file not found: {$mediaPath}"); } - + $mediaContent = file_get_contents($mediaPath); $details = json_decode($fax['details_json'] ?? '{}', true); $fromNumber = $details['from'] ?? $fax['calling_number'] ?? 'Unknown'; - + // Determine mime type from file $finfo = finfo_open(FILEINFO_MIME_TYPE); $mimeType = finfo_file($finfo, $mediaPath); finfo_close($finfo); - + // Store as patient document $result = $this->storeFaxDocument($faxSid, $mediaContent, $fromNumber, $patientId, $mimeType); - + // Update queue record QueryUtils::sqlStatementThrowException( - "UPDATE oe_faxsms_queue - SET patient_id = ?, document_id = ?, media_path = ? + "UPDATE oe_faxsms_queue + SET patient_id = ?, document_id = ?, media_path = ? WHERE job_id = ? AND site_id = ?", [$patientId, $result['document_id'], $result['media_path'], $faxSid, $this->siteId] ); - + // Delete old unassigned file if (file_exists($mediaPath)) { unlink($mediaPath); } - + error_log("FaxDocumentService: Assigned fax {$faxSid} to patient {$patientId}"); - + return [ 'success' => true, 'message' => 'Fax successfully assigned to patient', @@ -205,16 +205,16 @@ public function assignFaxToPatient(string $faxSid, int $patientId): array */ public function getUnassignedFaxes(): array { - $sql = "SELECT * FROM oe_faxsms_queue - WHERE site_id = ? + $sql = "SELECT * FROM oe_faxsms_queue + WHERE site_id = ? AND (patient_id IS NULL OR patient_id = 0) AND direction = 'inbound' AND deleted = 0 ORDER BY date DESC"; - + $rows = QueryUtils::fetchRecords($sql, [$this->siteId]); $faxes = []; - + foreach ($rows as $row) { $details = json_decode($row['details_json'] ?? '{}', true); $faxes[] = [ @@ -229,7 +229,7 @@ public function getUnassignedFaxes(): array 'details' => $details ]; } - + return $faxes; } @@ -245,13 +245,13 @@ public function getFaxDocument(string $faxSid): ?array "SELECT * FROM oe_faxsms_queue WHERE job_id = ? AND site_id = ?", [$faxSid, $this->siteId] ); - + if (empty($fax)) { return null; } - + $details = json_decode($fax['details_json'] ?? '{}', true); - + return [ 'id' => $fax['id'], 'job_id' => $fax['job_id'], @@ -278,22 +278,22 @@ public function deleteFaxDocument(string $faxSid, bool $deleteFile = false): boo { try { $fax = $this->getFaxDocument($faxSid); - + if (empty($fax)) { return false; } - + // Mark as deleted in queue QueryUtils::sqlStatementThrowException( "UPDATE oe_faxsms_queue SET deleted = 1 WHERE job_id = ? AND site_id = ?", [$faxSid, $this->siteId] ); - + // Optionally delete physical file if ($deleteFile && !empty($fax['media_path']) && file_exists($fax['media_path'])) { unlink($fax['media_path']); } - + error_log("FaxDocumentService: Deleted fax {$faxSid}"); return true; } catch (FaxDocumentException $e) { @@ -312,15 +312,15 @@ public function deleteFaxDocument(string $faxSid, bool $deleteFile = false): boo private function formatPhoneDisplay(string $phone): string { $cleaned = preg_replace('/[^0-9]/', '', $phone); - + if (strlen((string) $cleaned) === 11 && $cleaned[0] === '1') { $cleaned = substr((string) $cleaned, 1); } - + if (strlen((string) $cleaned) === 10) { return sprintf("(%s) %s-%s", substr((string) $cleaned, 0, 3), substr((string) $cleaned, 3, 3), substr((string) $cleaned, 6)); } - + return $phone; } @@ -333,11 +333,11 @@ private function formatPhoneDisplay(string $phone): string public function findPatientByPhone(string $fromNumber): int { $cleaned = preg_replace('/[^0-9]/', '', $fromNumber); - + if (strlen((string) $cleaned) === 11 && $cleaned[0] === '1') { $cleaned = substr((string) $cleaned, 1); } - + // Try exact match first $patterns = [ $cleaned, @@ -346,20 +346,20 @@ public function findPatientByPhone(string $fromNumber): int substr((string) $cleaned, 0, 3) . '-' . substr((string) $cleaned, 3, 3) . '-' . substr((string) $cleaned, 6), '(' . substr((string) $cleaned, 0, 3) . ') ' . substr((string) $cleaned, 3, 3) . '-' . substr((string) $cleaned, 6) ]; - + foreach ($patterns as $pattern) { $result = QueryUtils::querySingleRow( - "SELECT pid FROM patient_data + "SELECT pid FROM patient_data WHERE (phone_cell LIKE ? OR phone_home LIKE ? OR phone_biz LIKE ?) LIMIT 1", ["%{$pattern}%", "%{$pattern}%", "%{$pattern}%"] ); - + if (!empty($result['pid'])) { return (int)$result['pid']; } } - + return 0; } } diff --git a/interface/modules/custom_modules/oe-module-faxsms/src/Controller/SignalWireClient.php b/interface/modules/custom_modules/oe-module-faxsms/src/Controller/SignalWireClient.php index f43d5577cb1d..bc1e581ae00f 100644 --- a/interface/modules/custom_modules/oe-module-faxsms/src/Controller/SignalWireClient.php +++ b/interface/modules/custom_modules/oe-module-faxsms/src/Controller/SignalWireClient.php @@ -312,8 +312,8 @@ private function insertFaxQueue(array $faxData): void $site_id = $_SESSION['site_id'] ?? 'default'; $direction = $faxData['direction'] ?? 'outbound'; $status = $faxData['status'] ?? 'queued'; - - $sql = "INSERT INTO oe_faxsms_queue + + $sql = "INSERT INTO oe_faxsms_queue (uid, job_id, calling_number, called_number, details_json, date, direction, status, site_id) VALUES (?, ?, ?, ?, ?, NOW(), ?, ?, ?)"; @@ -341,11 +341,11 @@ private function fetchFaxQueue(string $dateFrom, string $dateTo, bool $received { $uid = $_SESSION['authUserID'] ?? 0; $site_id = $_SESSION['site_id'] ?? 'default'; - + // For inbound faxes, show to all users in the site // For outbound faxes, show only to the user who sent them $sql = "SELECT * FROM oe_faxsms_queue - WHERE site_id = ? + WHERE site_id = ? AND date BETWEEN ? AND ? AND (direction = 'inbound' OR uid = ?) ORDER BY date DESC"; @@ -579,24 +579,24 @@ public function assignFax(): string "SELECT job_id, patient_id FROM oe_faxsms_queue WHERE id = ? AND site_id = ?", [$queueId, $site_id] ); - + if (empty($fax)) { return json_encode(['error' => xlt('Fax not found')]); } - + if (!empty($fax['patient_id'])) { return json_encode(['error' => xlt('Fax already assigned to patient ') . $fax['patient_id']]); } - + $jobId = $fax['job_id']; // This is the SignalWire SID - + // Load the FaxDocumentService require_once(__DIR__ . '/FaxDocumentService.php'); $faxService = new \OpenEMR\Modules\FaxSMS\Controller\FaxDocumentService(); - + // Use the service to assign the fax (pass job_id, not queue id) $result = $faxService->assignFaxToPatient($jobId, $patientId); - + if ($result['success']) { return json_encode(['success' => true, 'document_id' => $result['document_id']]); } else { @@ -670,19 +670,19 @@ public function getPending(): string $documentId = $faxDetails->document_id ?? 0; $mediaPath = $faxDetails->media_path ?? ''; $queueId = $faxDetails->id ?? 0; - + // Build message column with view, download links and patient info $messageCol = ''; - + // Only show View/Download for inbound (received) faxes if ($direction === 'inbound') { // If assigned to patient, link to patient document if ($patientId > 0 && $documentId > 0) { $globals = OEGlobalsBag::getInstance(); - $viewLink = $globals->get('webroot') . "/controller.php?document&retrieve&patient_id=" . - urlencode((string) $patientId) . "&document_id=" . urlencode((string) $documentId) . + $viewLink = $globals->get('webroot') . "/controller.php?document&retrieve&patient_id=" . + urlencode((string) $patientId) . "&document_id=" . urlencode((string) $documentId) . "&as_file=false&original_file=true"; - $messageCol .= "" . + $messageCol .= "" . " " . xlt('View') . " "; if ($numPages > 0) { $messageCol .= "(" . text($numPages) . " " . xlt('pages') . ") "; @@ -692,10 +692,10 @@ public function getPending(): string $filename = basename((string) $mediaPath); $viewLink = "./viewFaxPdf?type=fax&site=" . urlencode($_SESSION['site_id'] ?? 'default') . "&id=" . urlencode($queueId); $downloadLink = "./download?type=fax&site=" . urlencode($_SESSION['site_id'] ?? 'default') . "&id=" . urlencode($queueId); - - $messageCol .= "" . + + $messageCol .= "" . " " . xlt('View') . " "; - $messageCol .= "" . + $messageCol .= "" . " " . xlt('Download') . " "; if ($numPages > 0) { $messageCol .= "(" . text($numPages) . " " . xlt('pages') . ") "; @@ -707,7 +707,7 @@ public function getPending(): string $messageCol .= "(" . text($numPages) . " " . xlt('pages') . ")"; } } - + if ($direction === 'inbound') { // Show patient assignment status if ($patientId > 0) { @@ -720,7 +720,7 @@ public function getPending(): string } else { $messageCol .= "" . xlt('Unassigned') . " "; // Add assign button - $messageCol .= ""; } } @@ -794,7 +794,7 @@ private function upsertFaxFromSignalWire($fax): void ]; error_log("SignalWireClient.upsertFaxFromSignalWire(): DEBUG - Upserting fax sid={$jobId}, from={$from}, to={$to}, status={$status}, direction={$direction}"); - + // Download fax media if available $mediaPath = $this->downloadFaxMedia($fax); if ($mediaPath) { @@ -806,9 +806,9 @@ private function upsertFaxFromSignalWire($fax): void if (!empty($existing)) { // Update existing fax with fresh status and media path - $sql = "UPDATE oe_faxsms_queue - SET details_json = ?, - direction = ?, + $sql = "UPDATE oe_faxsms_queue + SET details_json = ?, + direction = ?, status = ?, media_path = ? WHERE job_id = ?"; @@ -816,7 +816,7 @@ private function upsertFaxFromSignalWire($fax): void error_log("SignalWireClient.upsertFaxFromSignalWire(): DEBUG - Updated fax {$jobId} with fresh status"); } else { // Insert new fax from API fetch (these are received/already-sent faxes) - $sql = "INSERT INTO oe_faxsms_queue + $sql = "INSERT INTO oe_faxsms_queue (uid, job_id, calling_number, called_number, details_json, date, direction, status, site_id, media_path) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; $site_id = $_SESSION['site_id'] ?? 'default'; @@ -827,7 +827,7 @@ private function upsertFaxFromSignalWire($fax): void error_log("SignalWireClient.upsertFaxFromSignalWire(): ERROR - " . $e->getMessage()); } } - + /** * Download fax media from SignalWire and save locally * @@ -843,36 +843,36 @@ private function downloadFaxMedia($fax): ?string error_log("SignalWireClient.downloadFaxMedia(): No media URL available for fax {$fax->sid}"); return null; } - + // Create directory for fax media if it doesn't exist $faxDir = $this->baseDir . '/received_faxes'; if (!file_exists($faxDir)) { mkdir($faxDir, 0777, true); } - + // Generate filename $filename = $fax->sid . '.pdf'; $filepath = $faxDir . '/' . $filename; - + // Skip if file already exists if (file_exists($filepath)) { error_log("SignalWireClient.downloadFaxMedia(): File already exists: {$filepath}"); return $filepath; } - + // Download the file from SignalWire $fileContent = file_get_contents($mediaUrl); if ($fileContent === false) { error_log("SignalWireClient.downloadFaxMedia(): Failed to download media from {$mediaUrl}"); return null; } - + // Save the file if (file_put_contents($filepath, $fileContent) === false) { error_log("SignalWireClient.downloadFaxMedia(): Failed to save file to {$filepath}"); return null; } - + error_log("SignalWireClient.downloadFaxMedia(): Successfully downloaded fax to {$filepath}"); return $filepath; } catch (Exception $e) { diff --git a/interface/modules/custom_modules/oe-module-prior-authorizations/public/deleter.php b/interface/modules/custom_modules/oe-module-prior-authorizations/public/deleter.php index 3c5825a0f717..e2d5373e073f 100644 --- a/interface/modules/custom_modules/oe-module-prior-authorizations/public/deleter.php +++ b/interface/modules/custom_modules/oe-module-prior-authorizations/public/deleter.php @@ -37,5 +37,3 @@


" . xlt("If you are seeing this message the record was deleted. Click done, pls"); ?>

- - diff --git a/interface/modules/custom_modules/oe-module-weno/LICENSE b/interface/modules/custom_modules/oe-module-weno/LICENSE index 20d40b6bceca..94a9ed024d38 100644 --- a/interface/modules/custom_modules/oe-module-weno/LICENSE +++ b/interface/modules/custom_modules/oe-module-weno/LICENSE @@ -671,4 +671,4 @@ into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read -. \ No newline at end of file +. diff --git a/interface/modules/zend_modules/module/Application/ajax/reporting_period_handler.php b/interface/modules/zend_modules/module/Application/ajax/reporting_period_handler.php index 5670f3c40895..cb2e839c9ebb 100644 --- a/interface/modules/zend_modules/module/Application/ajax/reporting_period_handler.php +++ b/interface/modules/zend_modules/module/Application/ajax/reporting_period_handler.php @@ -51,9 +51,9 @@ function handleUpdateReportingPeriod() } // Validate the period exists in list_options - $sql = "SELECT COUNT(*) as count FROM list_options - WHERE list_id = 'ecqm_reporting_period' - AND option_id = ? + $sql = "SELECT COUNT(*) as count FROM list_options + WHERE list_id = 'ecqm_reporting_period' + AND option_id = ? AND activity = 1"; $result = sqlQuery($sql, [$period]); diff --git a/interface/modules/zend_modules/module/Application/view/application/index/auto-suggest.phtml b/interface/modules/zend_modules/module/Application/view/application/index/auto-suggest.phtml index e97d187dd2e7..a1eb30b475bb 100644 --- a/interface/modules/zend_modules/module/Application/view/application/index/auto-suggest.phtml +++ b/interface/modules/zend_modules/module/Application/view/application/index/auto-suggest.phtml @@ -186,6 +186,3 @@ ?> - - - diff --git a/interface/modules/zend_modules/module/Application/view/application/index/index.phtml b/interface/modules/zend_modules/module/Application/view/application/index/index.phtml index 225446760e59..f4d8c9e8bff9 100644 --- a/interface/modules/zend_modules/module/Application/view/application/index/index.phtml +++ b/interface/modules/zend_modules/module/Application/view/application/index/index.phtml @@ -8,4 +8,4 @@ * @copyright Copyright (c) 2014 Z&H Consultancy Services Private Limited * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 */ -?> \ No newline at end of file +?> diff --git a/interface/modules/zend_modules/module/Application/view/application/sendto/send.phtml b/interface/modules/zend_modules/module/Application/view/application/sendto/send.phtml index 012b2c53b2ff..4417d6c53d05 100644 --- a/interface/modules/zend_modules/module/Application/view/application/sendto/send.phtml +++ b/interface/modules/zend_modules/module/Application/view/application/sendto/send.phtml @@ -20,10 +20,10 @@ $required_buttons = $this->required_butons; $download_format = $this->download_format; $ecqm_reporting_periods = sqlStatement(" - SELECT option_id, title, is_default - FROM list_options - WHERE list_id = 'ecqm_reporting_period' - AND activity = 1 + SELECT option_id, title, is_default + FROM list_options + WHERE list_id = 'ecqm_reporting_period' + AND activity = 1 ORDER BY seq ASC "); diff --git a/interface/modules/zend_modules/module/Application/view/error/404.phtml b/interface/modules/zend_modules/module/Application/view/error/404.phtml index ceb3ff6bb285..a44ac548d5d6 100644 --- a/interface/modules/zend_modules/module/Application/view/error/404.phtml +++ b/interface/modules/zend_modules/module/Application/view/error/404.phtml @@ -110,4 +110,4 @@ - \ No newline at end of file + diff --git a/interface/modules/zend_modules/module/Application/view/error/index.phtml b/interface/modules/zend_modules/module/Application/view/error/index.phtml index 7418bcf01f18..41b313bab26b 100644 --- a/interface/modules/zend_modules/module/Application/view/error/index.phtml +++ b/interface/modules/zend_modules/module/Application/view/error/index.phtml @@ -65,4 +65,4 @@ - \ No newline at end of file + diff --git a/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/carecoordination/index.phtml b/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/carecoordination/index.phtml index a4c7825371e2..a5071ab1898b 100644 --- a/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/carecoordination/index.phtml +++ b/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/carecoordination/index.phtml @@ -8,4 +8,4 @@ * @copyright Copyright (c) 2014 Z&H Consultancy Services Private Limited * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 */ -?> \ No newline at end of file +?> diff --git a/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/carecoordination/view.phtml b/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/carecoordination/view.phtml index ae6fdca5ca16..33fc57605178 100644 --- a/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/carecoordination/view.phtml +++ b/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/carecoordination/view.phtml @@ -9,4 +9,4 @@ * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 */ echo $this->escapeHtml($this->content); -?> \ No newline at end of file +?> diff --git a/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/encounterccdadispatch/autosend.phtml b/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/encounterccdadispatch/autosend.phtml index d309363f6c05..76b12392eaeb 100644 --- a/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/encounterccdadispatch/autosend.phtml +++ b/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/encounterccdadispatch/autosend.phtml @@ -9,4 +9,4 @@ * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 */ echo $this->listenerObject->z_xlt('Done'); -?> \ No newline at end of file +?> diff --git a/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/encounterccdadispatch/autosignoff.phtml b/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/encounterccdadispatch/autosignoff.phtml index ab218406b4b1..ba9dabe8f4a4 100644 --- a/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/encounterccdadispatch/autosignoff.phtml +++ b/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/encounterccdadispatch/autosignoff.phtml @@ -9,4 +9,4 @@ * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 */ echo $this->listenerObject->z_xlt('Done'); -?> \ No newline at end of file +?> diff --git a/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/encounterccdadispatch/index.phtml b/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/encounterccdadispatch/index.phtml index 52c75862bbc3..547a77b754e0 100644 --- a/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/encounterccdadispatch/index.phtml +++ b/interface/modules/zend_modules/module/Carecoordination/view/carecoordination/encounterccdadispatch/index.phtml @@ -9,4 +9,4 @@ * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 */ echo $this->listenerObject->z_xlt('Done'); -?> \ No newline at end of file +?> diff --git a/interface/modules/zend_modules/module/Carecoordination/view/layout/layout.phtml b/interface/modules/zend_modules/module/Carecoordination/view/layout/layout.phtml index f62462f6b4c1..ec31df1e96ca 100644 --- a/interface/modules/zend_modules/module/Carecoordination/view/layout/layout.phtml +++ b/interface/modules/zend_modules/module/Carecoordination/view/layout/layout.phtml @@ -41,4 +41,4 @@ echo $this->doctype(); inlineScript() ?> - \ No newline at end of file + diff --git a/interface/modules/zend_modules/module/Ccr/view/ccr/ccr/view.phtml b/interface/modules/zend_modules/module/Ccr/view/ccr/ccr/view.phtml index 7d9ee86a7590..397631b391a7 100644 --- a/interface/modules/zend_modules/module/Ccr/view/ccr/ccr/view.phtml +++ b/interface/modules/zend_modules/module/Ccr/view/ccr/ccr/view.phtml @@ -9,4 +9,4 @@ * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 */ echo $this->content; -?> \ No newline at end of file +?> diff --git a/interface/modules/zend_modules/module/Documents/info.txt b/interface/modules/zend_modules/module/Documents/info.txt index dffbe3a7947d..0a7676b9bbe2 100644 --- a/interface/modules/zend_modules/module/Documents/info.txt +++ b/interface/modules/zend_modules/module/Documents/info.txt @@ -1 +1 @@ -Documents Module \ No newline at end of file +Documents Module diff --git a/interface/modules/zend_modules/module/Documents/view/documents/documents/list.phtml b/interface/modules/zend_modules/module/Documents/view/documents/documents/list.phtml index 836bbe256be3..36f933037b3a 100644 --- a/interface/modules/zend_modules/module/Documents/view/documents/documents/list.phtml +++ b/interface/modules/zend_modules/module/Documents/view/documents/documents/list.phtml @@ -137,4 +137,4 @@ $pid = $this->pid; -
\ No newline at end of file +
diff --git a/interface/modules/zend_modules/module/Documents/view/documents/documents/retrieve.phtml b/interface/modules/zend_modules/module/Documents/view/documents/documents/retrieve.phtml index 61742c1ef424..f732ea6f9453 100644 --- a/interface/modules/zend_modules/module/Documents/view/documents/documents/retrieve.phtml +++ b/interface/modules/zend_modules/module/Documents/view/documents/documents/retrieve.phtml @@ -14,4 +14,4 @@
- \ No newline at end of file + diff --git a/interface/modules/zend_modules/module/Documents/view/layout/layout.phtml b/interface/modules/zend_modules/module/Documents/view/layout/layout.phtml index 5b3d7ca83b09..c81bf9d06724 100644 --- a/interface/modules/zend_modules/module/Documents/view/layout/layout.phtml +++ b/interface/modules/zend_modules/module/Documents/view/layout/layout.phtml @@ -18,7 +18,7 @@ headTitle($this->translate()->xl('Welcome to OpenEMR'))->setSeparator(' - ')->setAutoEscape(false) ?> - + headMeta()->appendName('viewport', 'width=device-width, initial-scale=1, shrink-to-fit=no') ?> headLink(array('rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/img/favicon.ico'))->prependStylesheet($this->basePath() . '/css/file_uploader.css')->prependStylesheet($this->basePath() . '/css/'.$GLOBALS['zhemr']['default_theme'].'/documents.css')->prependStylesheet($this->basePath() . '/css/'.$GLOBALS['zhemr']['default_theme'].'/css_buttons.css')->prependStylesheet($this->basePath() . '/css/layout.css')->prependStylesheet($this->basePath() . '/css/skeleton.css')->prependStylesheet($this->basePath() . '/css/base.css')->prependStylesheet($this->basePath() . '/css/default/datepicker.css')?> @@ -42,4 +42,4 @@ ->prependFile($this->basePath() . '/js/lib/jquery-1.10.2.min.js') ?> javascriptGlobals(); ?> - \ No newline at end of file + diff --git a/interface/modules/zend_modules/module/Multipledb/Readme.md b/interface/modules/zend_modules/module/Multipledb/Readme.md index 9c5e3b21fc29..635011a8a1d4 100644 --- a/interface/modules/zend_modules/module/Multipledb/Readme.md +++ b/interface/modules/zend_modules/module/Multipledb/Readme.md @@ -1,6 +1,6 @@ #Multiple Databases Module -This module allows you to have multiple databases that your zend modules can read / write to. This can be used for clustering, single master, multi-read strategy, sharding, or aggregating multiple databases. +This module allows you to have multiple databases that your zend modules can read / write to. This can be used for clustering, single master, multi-read strategy, sharding, or aggregating multiple databases. Each database that you want to read to / write from must be associated with a unique namespace name. For example if you were clustering @@ -29,8 +29,8 @@ Then you can access these named adapters in your code by injecting them in your 'factories' => array( SomeModuleClass::class => function(ContainerInterface $container, $requestedName) { // note we don't use the ::class modifier here as the class may not actually exist but is a placeholder. - $dbReader = $container->get('OpenEMR\Modules\Db\ReadAdapter'); - $dbWriter = $container->get('OpenEMR\Modules\Db\WriteAdapter'); + $dbReader = $container->get('OpenEMR\Modules\Db\ReadAdapter'); + $dbWriter = $container->get('OpenEMR\Modules\Db\WriteAdapter'); /** * the constructor for SomeModuleClass would have the signature of * public function __construct(Laminas\Db\Adapter\Adapter $dbReader, Laminas\Db\Adapter\Adapter $dbWriter) {} @@ -49,4 +49,4 @@ You can do this by editing Administration > Globals > Security > Allow multiple This module leverages the named adapter's functionality of the Laminas-DB module. You can learn more about it here: https://docs.zendframework.com/tutorials/db-adapter/ -The injection of the database adapters happens in the oemr_install/interface/modules/zend_modules/config/autoload/global.php file. This is the last step before the zend application / modules are executed. It will override all prior service factory configuration so if a Namespace name is added that conflicts with an existing module Namespace class it WILL replace and overwrite it. This could lead to unexpected or fatal system behavior if the database adapter namespaces are not named carefully. \ No newline at end of file +The injection of the database adapters happens in the oemr_install/interface/modules/zend_modules/config/autoload/global.php file. This is the last step before the zend application / modules are executed. It will override all prior service factory configuration so if a Namespace name is added that conflicts with an existing module Namespace class it WILL replace and overwrite it. This could lead to unexpected or fatal system behavior if the database adapter namespaces are not named carefully. diff --git a/interface/modules/zend_modules/module/Multipledb/view/multipledb/multipledb/edit.phtml b/interface/modules/zend_modules/module/Multipledb/view/multipledb/multipledb/edit.phtml index 3533ba5379ce..606550804c3d 100644 --- a/interface/modules/zend_modules/module/Multipledb/view/multipledb/multipledb/edit.phtml +++ b/interface/modules/zend_modules/module/Multipledb/view/multipledb/multipledb/edit.phtml @@ -96,4 +96,4 @@ } } - \ No newline at end of file + diff --git a/interface/modules/zend_modules/module/Multipledb/view/multipledb/multipledb/generatesafekey.phtml b/interface/modules/zend_modules/module/Multipledb/view/multipledb/multipledb/generatesafekey.phtml index 54e29b4888ad..2ca536542c18 100644 --- a/interface/modules/zend_modules/module/Multipledb/view/multipledb/multipledb/generatesafekey.phtml +++ b/interface/modules/zend_modules/module/Multipledb/view/multipledb/multipledb/generatesafekey.phtml @@ -50,4 +50,4 @@ function newkey(){ location.reload(); } - \ No newline at end of file + diff --git a/interface/modules/zend_modules/module/Multipledb/view/multipledb/multipledb/index.phtml b/interface/modules/zend_modules/module/Multipledb/view/multipledb/multipledb/index.phtml index 4027a673ef94..0c6da31088d5 100644 --- a/interface/modules/zend_modules/module/Multipledb/view/multipledb/multipledb/index.phtml +++ b/interface/modules/zend_modules/module/Multipledb/view/multipledb/multipledb/index.phtml @@ -91,4 +91,3 @@ html; } - diff --git a/interface/modules/zend_modules/module/PatientFilter/README b/interface/modules/zend_modules/module/PatientFilter/README index 6e0331ce1042..2c71c19f9cc7 100644 --- a/interface/modules/zend_modules/module/PatientFilter/README +++ b/interface/modules/zend_modules/module/PatientFilter/README @@ -14,16 +14,15 @@ Then you will be able to register the module. 1. Browse to Modules > Manage Modules 2. Click "Unregistered" Tab 3. Click "Register" button next to UserPatientBlacklist module, which will be near the bottom -4. You'll automatically be redirected to the "Registered tab" +4. You'll automatically be redirected to the "Registered tab" 5. Click "Install" button next to UserPatientBlacklist module 6. Click "Enable" button next to UserPatientBlacklist module **Usage** -edit the file in UserPatientBlacklist/config/blacklist.php to include the usernames of users +edit the file in UserPatientBlacklist/config/blacklist.php to include the usernames of users and PIDs to restrict access to those patients for those users. Try using the patient finder and see that when logged in as a user, the patients in your blacklist will not appear in the finder. You will also receive an "unauthorized" message when attempting to view or update the patient demographics screen. - \ No newline at end of file diff --git a/interface/modules/zend_modules/module/PatientFilter/acl/acl_setup.php b/interface/modules/zend_modules/module/PatientFilter/acl/acl_setup.php index 8754ae46c6af..9810e6678ea7 100644 --- a/interface/modules/zend_modules/module/PatientFilter/acl/acl_setup.php +++ b/interface/modules/zend_modules/module/PatientFilter/acl/acl_setup.php @@ -30,4 +30,3 @@ All done configuring and installing access controls (php-GACL)! - diff --git a/interface/modules/zend_modules/module/PatientFilter/info.txt b/interface/modules/zend_modules/module/PatientFilter/info.txt index f43955dcb1fb..c883c7617f02 100644 --- a/interface/modules/zend_modules/module/PatientFilter/info.txt +++ b/interface/modules/zend_modules/module/PatientFilter/info.txt @@ -1 +1 @@ -Patient Filter Event Hook Test \ No newline at end of file +Patient Filter Event Hook Test diff --git a/interface/modules/zend_modules/module/Patientvalidation/Readme.md b/interface/modules/zend_modules/module/Patientvalidation/Readme.md index 66b3b20c994b..02a5ec41c2eb 100644 --- a/interface/modules/zend_modules/module/Patientvalidation/Readme.md +++ b/interface/modules/zend_modules/module/Patientvalidation/Readme.md @@ -1,3 +1,3 @@ This is the patient validation form in order to use it you must set the global flag in Administration > Globals > New Patient Form. Set the value to be 'Mandatory or specified fields only, use patient validation Laminas module'. -To set the modify form to use this patient validation set Administration > Globals > 'Modify Patient Form' to be 'Laminas Module check in addition to standard checks'. \ No newline at end of file +To set the modify form to use this patient validation set Administration > Globals > 'Modify Patient Form' to be 'Laminas Module check in addition to standard checks'. diff --git a/interface/modules/zend_modules/module/Patientvalidation/view/patientvalidation/patientvalidation/index.phtml b/interface/modules/zend_modules/module/Patientvalidation/view/patientvalidation/patientvalidation/index.phtml index 4db5beb86290..95f032ca30e4 100644 --- a/interface/modules/zend_modules/module/Patientvalidation/view/patientvalidation/patientvalidation/index.phtml +++ b/interface/modules/zend_modules/module/Patientvalidation/view/patientvalidation/patientvalidation/index.phtml @@ -112,4 +112,4 @@ $("
").appendTo("#example_info"); }); - \ No newline at end of file + diff --git a/interface/modules/zend_modules/module/PrescriptionTemplates/view/prescription-templates/default.phtml b/interface/modules/zend_modules/module/PrescriptionTemplates/view/prescription-templates/default.phtml index a548bdd3f73a..635e0f47ec0c 100644 --- a/interface/modules/zend_modules/module/PrescriptionTemplates/view/prescription-templates/default.phtml +++ b/interface/modules/zend_modules/module/PrescriptionTemplates/view/prescription-templates/default.phtml @@ -91,4 +91,4 @@ \ No newline at end of file + diff --git a/interface/modules/zend_modules/public/css/autosuggest/autosuggest.css b/interface/modules/zend_modules/public/css/autosuggest/autosuggest.css index d3752475d465..b9959937ac05 100644 --- a/interface/modules/zend_modules/public/css/autosuggest/autosuggest.css +++ b/interface/modules/zend_modules/public/css/autosuggest/autosuggest.css @@ -1,4 +1,4 @@ -/* +/* Document : autosuggest Created on : Dec 2, 2013, 10:54:13 AM Author : Ramesh @@ -6,7 +6,7 @@ Purpose of the stylesheet follows. */ -root { +root { display: block; } @@ -19,7 +19,7 @@ root { background-color: #336699; -moz-border-radius: 7px; -webkit-border-radius: 7px; - border: 2px solid #000; + border: 2px solid #000; color: #fff; font-size: 10px; @@ -39,10 +39,10 @@ root { background-color: #336699; } -.suggestionList li:hover { +.suggestionList li:hover { position: relative; float:left; - background-color: #659CD8; + background-color: #659CD8; width: 325px; } @@ -82,12 +82,12 @@ li{ } a{ - color: #24476B; + color: #24476B; text-decoration:none; } a:hover { - color: #0000FF; + color: #0000FF; text-decoration:none; } @@ -99,7 +99,7 @@ a:hover { padding-top:1px; padding-bottom: 1px; } - + .row1 { position: relative; float:left; @@ -119,7 +119,7 @@ a:hover { /** auto-suggest.phtml */ .top_panel_head { - background:linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 100%); + background:linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 100%); padding: 5px 0; font-size: 11px; } @@ -127,18 +127,18 @@ a:hover { color: rgb(58, 171, 214) !important; } .bottom_panel_head{ - background:linear-gradient(to bottom,#F9F9F9 0,#efefef 100%); + background:linear-gradient(to bottom,#F9F9F9 0,#efefef 100%); padding: 5px 0; - font-size: 11px; + font-size: 11px; border-bottom: 1px solid #dddddd; - border-top:1px solid #dddddd; + border-top:1px solid #dddddd; } .panel-head { border-top:1px solid #D3D3D3; position: relative; /*margin-top: 37px;*/ } - + .panel-title { color: #575765; font-size: 11px; @@ -146,37 +146,37 @@ a:hover { height: 16px; line-height: 16px; } - + .panel-bod { background-color: #FFFFFF; color: #000000; font-size: 12px; } .panel_content{ - max-height:300px; + max-height:300px; overflow: auto ; background-color: rgb(255, 255, 255); } - .panel_content_wrapper { + .panel_content_wrapper { /* width: 32%; */ border:1px solid #95B8E7; } - .panel_row { + .panel_row { display: block; font-size: 11px; - border: 1px dotted #ccc; + border: 1px dotted #ccc; border-left: 0; - border-right: 0; - border-bottom: 0; + border-right: 0; + border-bottom: 0; } - .itemBox { - padding: 5px 0; + .itemBox { + padding: 5px 0; border-right: 1px dotted #CCC; height: 15px; } - + /** Selected Items */ - + /* selected_items { -moz-user-select: none; background-color: #F4F4F4; @@ -186,70 +186,70 @@ a:hover { margin: 0.5% 1%; width: 47%; }*/ - - .autosuggest_label { - -moz-border-radius: 5px 0 0 5px; + + .autosuggest_label { + -moz-border-radius: 5px 0 0 5px; -webkit-border-radius: 5px 0 0 5px; background: linear-gradient(to bottom, rgb(239, 245, 255) 0px, rgb(224, 236, 255) 100%) repeat-x scroll 0 0 rgba(0, 0, 0, 0); border: 1px solid rgb(149, 184, 231); /* background: #EEE; */ - border: 1px solid #CCC; - border-radius: 5px 0 0 5px; - border-right: 1px solid #FFF; - display: inline-block; - height: 25px; - width: 275px; - line-height: 36px; - margin-right: 0; - width: 35px!important; + border: 1px solid #CCC; + border-radius: 5px 0 0 5px; + border-right: 1px solid #FFF; + display: inline-block; + height: 25px; + width: 275px; + line-height: 36px; + margin-right: 0; + width: 35px!important; float: left; - } - #target{ - -moz-border-radius: 0 5px 5px 0; - -webkit-border-radius: 0 5px 5px 0; - background: #FFF; - border: 1px solid #CCC; - border-radius: 0 5px 5px 0; - color: #333; - font: 13px/1.6 'Helvetica Neue' , Arial, 'Liberation Sans' , FreeSans, sans-serif; + } + #target{ + -moz-border-radius: 0 5px 5px 0; + -webkit-border-radius: 0 5px 5px 0; + background: #FFF; + border: 1px solid #CCC; + border-radius: 0 5px 5px 0; + color: #333; + font: 13px/1.6 'Helvetica Neue' , Arial, 'Liberation Sans' , FreeSans, sans-serif; min-height: 25px; max-height: auto; - line-height: 24px; - margin: 0px 8px 0px -5px; - outline: none; - padding: 0 3px; + line-height: 24px; + margin: 0px 8px 0px -5px; + outline: none; + padding: 0 3px; min-width: 115px; max-width: 30%; - } - - label { - display: block; - height: 25px; - line-height: 25px; - padding: 0 0 0 30px; - } + } + + label { + display: block; + height: 25px; + line-height: 25px; + padding: 0 0 0 30px; + } .selected_search { float: left; } .string_id { - background: white; - border: 1px solid #DDD; - border-radius: 5px; - box-shadow: 0 0 1px #DDD inset; - color: #666; - outline: none; - height:24px; + background: white; + border: 1px solid #DDD; + border-radius: 5px; + box-shadow: 0 0 1px #DDD inset; + color: #666; + outline: none; + height:24px; width: 50px; text-align: center; } - + .lookup { - + } - + #autoSuggestionsList { position: absolute; width: 40%; - } \ No newline at end of file + } diff --git a/interface/modules/zend_modules/public/css/bubbles.css b/interface/modules/zend_modules/public/css/bubbles.css index 50eb4b57ef3c..b8efbd93da3d 100644 --- a/interface/modules/zend_modules/public/css/bubbles.css +++ b/interface/modules/zend_modules/public/css/bubbles.css @@ -1,26 +1,26 @@ -#personPopupContainer -{ - position:absolute; - left:5px; +#personPopupContainer +{ + position:absolute; + left:5px; top:0; right:10; - display:none; + display:none; z-index: 20000; border:1px solid #95B8E7; - padding:10px 40px; + padding:10px 40px; background:#FFF; border-radius:8px; -moz-border-radius:8px; /* Old Firefox */ box-shadow: 5px 5px 3px #888888; -} - -.personPopupPopup -{ -} - -#personPopupContent -{ - background-color: #FFF; - /*min-width: 175px; +} + +.personPopupPopup +{ +} + +#personPopupContent +{ + background-color: #FFF; + /*min-width: 175px; min-height: 50px; */ -} \ No newline at end of file +} diff --git a/interface/modules/zend_modules/public/css/bubbletip-IE.css b/interface/modules/zend_modules/public/css/bubbletip-IE.css index dbfe1d518eff..245956558832 100644 --- a/interface/modules/zend_modules/public/css/bubbletip-IE.css +++ b/interface/modules/zend_modules/public/css/bubbletip-IE.css @@ -61,4 +61,3 @@ background: transparent url(images/bubbletip-B-tail.png) no-repeat scroll 0px 0px; } /*******************************/ - diff --git a/interface/modules/zend_modules/public/css/bubbletip.css b/interface/modules/zend_modules/public/css/bubbletip.css index 99ab02ba0c7c..ec26621d6184 100644 --- a/interface/modules/zend_modules/public/css/bubbletip.css +++ b/interface/modules/zend_modules/public/css/bubbletip.css @@ -95,4 +95,3 @@ vertical-align: middle; } /*******************************/ - diff --git a/interface/modules/zend_modules/public/css/carecoordination_style.css b/interface/modules/zend_modules/public/css/carecoordination_style.css index 5eeeb07c8bf1..32043955d99f 100644 --- a/interface/modules/zend_modules/public/css/carecoordination_style.css +++ b/interface/modules/zend_modules/public/css/carecoordination_style.css @@ -33,7 +33,7 @@ q:before, q:after { content: none; } table { border-collapse: collapse; - border-spacing: 0; + border-spacing: 0; width: 100%; } @@ -136,8 +136,8 @@ img.scale-with-grid { font-size: 12px !important; } -.header_wrap { - width: 100%; +.header_wrap { + width: 100%; background: #F1F1F1; border-bottom: 1px solid #ccc; height: 60px; @@ -200,7 +200,7 @@ img.scale-with-grid { .se_in_4 { float: left ; } .se_in_5 { float: right; background: #fef9db; border:1px solid #c6c6c6; } /* first */ -.se_in_5-1 { background-position: -12px -95px; } +.se_in_5-1 { background-position: -12px -95px; } .se_in_5-1:hover{ background-position: -53px -95px; } /* prev */ .se_in_5-2 { background-position: -14px -156px; } @@ -682,7 +682,7 @@ ul.main-tab-head{ background: #f8f8f8; display: inline-block; line-height: 28px; - padding: 0 12px; + padding: 0 12px; float: left; cursor: pointer;border-bottom: 2px solid #CCC; margin-right: 3px; @@ -757,4 +757,4 @@ ul.child-tab-head{ } .narr_th { background-color: #ffd700; -} \ No newline at end of file +} diff --git a/interface/modules/zend_modules/public/css/ccda.css b/interface/modules/zend_modules/public/css/ccda.css index ffabd0cf8298..c89922ddb547 100644 --- a/interface/modules/zend_modules/public/css/ccda.css +++ b/interface/modules/zend_modules/public/css/ccda.css @@ -80,38 +80,38 @@ text-align: center; /*padding: 2px 0;*/ /*margin: 10px 0;*/ -} +} .paginationstyle select{ /*Style for demo pagination divs' select menu*/ border: 1px solid navy; margin: 0 15px; -} -.paginationstyle a{ /*Pagination links style*/ +} +.paginationstyle a{ /*Pagination links style*/ margin-top: 170px; padding: 0 5px; text-decoration: none; color: #052e70; font-size: small; - font-weight: 900; -} + font-weight: 900; +} .paginationstyle a:hover, .paginationstyle a.selected{ color: #052e70; -} +} .paginationstyle a.disabled, .paginationstyle a.disabled:hover{ /*Style for "disabled" previous or next link*/ cursor: default; color: #D7DFE7; border-color: transparent; -} +} .paginationstyle a.imglinks{ /*Pagination Image links style (class="imglinks") */ border: 0; padding: 0; -} +} .paginationstyle a.imglinks img{ vertical-align: bottom; border: 0; -} +} .paginationstyle a.imglinks a:hover{ background: none; -} +} .paginationstyle .flatview a:hover, .paginationstyle .flatview a.selected{ /*Pagination div "flatview" links style*/ color: #000; background-color: yellow; @@ -119,40 +119,40 @@ /* - * updated layout styles + * updated layout styles */ .top-menu { margin: 0; padding: 0; width:100%; min-height:26px; min-height:38px;} .ca-ca-in-1 { width:68%; float:left; min-height: 385px; } .ca-ca-in-2 { float:left; width:27%; margin-left:1%; background:#B3D6F9;border-bottom: 2px solid #0866C6; border-top: 2px solid #0866C6; min-height: 385px;} .clear { clear:both;} - + .top-menu li { list-style-type: none; float: left; padding: 10px 30px; font-size: 15px; cursor:pointer; border-left:1px solid #d7d7d7; border-top:2px solid #d7d7d7;} .top-menu li:hover{border-top:2px solid #0866C6; } .top-menu li:last-child { border-right:1px solid #d7d7d7;} #tabs-system_based_forms { display:block; } /* All form container */ - + .all-form { display:none; width:100%; margin:0 auto; } .activeTabForm { display:block; background:#B3D6F9; border-top:2px solid #0866C6 !important;} .ca-ca-in-3 {width:100%; margin:0 auto; background: #B3D6F9; border-bottom: 2px solid #0866C6; min-height: 386px; } .activeWindowForm { background:#B3D6F9; display:block;} .paginationstyle img { width:22px;} .paginationstyle .disabled img { display:none;} - + /* all form li elements */ .virtualpage_system_based_forms, .virtualpage_layout_based_forms,.all-form > ul{ width: 43%; float: left;} ul.virtualpage_system_based_forms li,.virtualpage_layout_based_forms li,.all-form > ul li{ background:/*rgba(243,243,243,.85);*/ #FFF; border: none; border-left: 3px solid #0866C6; cursor:pointer; border-right:3px solid #d7d7d7; color:#036; } .all-form ul ul li { list-style-type:none; border:1px solid #d7d7d7;} - + /* dropable area li*/ .ca-ca-in-2 ul{ width:100%; } .ca-ca-in-2 ul li { - + } .ui-state-disabled { background:#FFF;} .ca-ca-in-2 .child-drop-area { border-right:3px solid #d7d7d7; color:#036; background: #FFF; border: none; border-left: 3px solid #0866C6; cursor: pointer; border-right: 3px solid #d7d7d7; color: #036; width: 89%; border-bottom: 1px solid #d7d7d7; border-top: 1px solid #d7d7d7; - } \ No newline at end of file + } diff --git a/interface/modules/zend_modules/public/css/demo.css b/interface/modules/zend_modules/public/css/demo.css index 591e711e9776..ac02c0363445 100644 --- a/interface/modules/zend_modules/public/css/demo.css +++ b/interface/modules/zend_modules/public/css/demo.css @@ -44,7 +44,7 @@ legend font-size:13px; font-weight:400; font-style:italic; - + } .headtd{ border-style:dotted;border-width:0 0 1px 0; @@ -71,4 +71,4 @@ legend border-color:#c0c0c0; height:25px; font-size:7.5pt; -} \ No newline at end of file +} diff --git a/interface/modules/zend_modules/public/css/drag_and_drop_uploader.css b/interface/modules/zend_modules/public/css/drag_and_drop_uploader.css index 8be32c62dc34..48268ee4747a 100644 --- a/interface/modules/zend_modules/public/css/drag_and_drop_uploader.css +++ b/interface/modules/zend_modules/public/css/drag_and_drop_uploader.css @@ -4,25 +4,25 @@ width : 200px; height : 22px; border : 1px solid #ddd; - border-radius : 5px; + border-radius : 5px; overflow : hidden; display :inline-block; margin :0px 10px 5px 5px; vertical-align :top; -} +} .progressBar div { /*height : 100%;*/ color : #fff; text-align : right; line-height : 22px; /* same as #progressBar height if we want text middle aligned */ width : 0; - background-color: #0ba1b5; border-radius: 3px; + background-color: #0ba1b5; border-radius: 3px; } .statusbar{ border-top :1px solid #A9CCD1; min-height :25px; padding :10px 10px 0px 10px; - vertical-align:top; + vertical-align:top; } #status1{ -moz-box-shadow : 1px 4px 4px 1px #8B8B8B; @@ -77,4 +77,4 @@ cursor : pointer; width :45px; height : 45px; -} \ No newline at end of file +} diff --git a/interface/modules/zend_modules/public/css/easyui.css b/interface/modules/zend_modules/public/css/easyui.css index e9f9a1fc54e5..7db47ddce18e 100644 --- a/interface/modules/zend_modules/public/css/easyui.css +++ b/interface/modules/zend_modules/public/css/easyui.css @@ -1029,7 +1029,7 @@ a:hover.l-btn-disabled { padding: 0; overflow: auto; zoom: 1; - + } .datagrid-view1 .datagrid-body-inner { padding-bottom: 20px; @@ -2183,7 +2183,7 @@ a.s-btn-plain-active { .border1{ border: 1px solid red; } - + .icon-lab-order { background: url("images/lab_order.png") no-repeat scroll center center transparent; } @@ -2211,7 +2211,5 @@ a.s-btn-plain-active { width: 240px; overflow: hidden; background: url('images/new_arrow.jpg') no-repeat right ; - - } - + } diff --git a/interface/modules/zend_modules/public/css/encounter.css b/interface/modules/zend_modules/public/css/encounter.css index f6c5aaadcb5c..1a82be8940d2 100644 --- a/interface/modules/zend_modules/public/css/encounter.css +++ b/interface/modules/zend_modules/public/css/encounter.css @@ -1,7 +1,7 @@ /** * encounter.css */ - + ul,li { list-style-type: none; } @@ -13,11 +13,11 @@ transition: text-shadow 0.2s linear; } .selection:hover { - color: #0E2D5F; + color: #0E2D5F; padding: 1px; text-shadow: 0 0 10px #079FB3; } - + #diloagMin { position: fixed; bottom: 0px; @@ -25,4 +25,3 @@ width: auto; /*background: #0068A4;*/ } - \ No newline at end of file diff --git a/interface/modules/zend_modules/public/css/icon.css b/interface/modules/zend_modules/public/css/icon.css index fb3b6a9f4928..97e4c956809c 100644 --- a/interface/modules/zend_modules/public/css/icon.css +++ b/interface/modules/zend_modules/public/css/icon.css @@ -127,4 +127,4 @@ } .icon-setup{ background:url('icons/setup.png') no-repeat center center; -} \ No newline at end of file +} diff --git a/interface/modules/zend_modules/public/css/immunization.css b/interface/modules/zend_modules/public/css/immunization.css index 55b438c297dc..d2de02b8c641 100644 --- a/interface/modules/zend_modules/public/css/immunization.css +++ b/interface/modules/zend_modules/public/css/immunization.css @@ -27,7 +27,7 @@ margin-right: 10px; font-size:12px !important; } - + #searchbutton { border: none; border-bottom-left-radius: 0; @@ -49,7 +49,7 @@ margin-right: 10px; font-size:12px !important; } - + #printbutton { border: none; border-bottom-left-radius: 0; @@ -71,8 +71,8 @@ margin-right: 10px; font-size:12px !important; } - - + + @media print { #report_parameters_daterange { visibility: visible !important; @@ -80,14 +80,14 @@ margin-bottom: 10px !important; } #print_table { - display: none !important; + display: none !important; } } - + @media screen{ #report_parameters_daterange { visibility: hidden !important; display: none !important; - - } - } \ No newline at end of file + + } + } diff --git a/interface/modules/zend_modules/public/css/jquery.contextMenu.css b/interface/modules/zend_modules/public/css/jquery.contextMenu.css index afd624d65dd2..58f3ee186817 100644 --- a/interface/modules/zend_modules/public/css/jquery.contextMenu.css +++ b/interface/modules/zend_modules/public/css/jquery.contextMenu.css @@ -13,24 +13,24 @@ */ .context-menu-list { - margin:0; + margin:0; padding:0; - + min-width: 120px; max-width: 250px; display: inline-block; position: absolute; list-style-type: none; - + border: 1px solid #DDD; background: #EEE; - + -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); - + font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; } @@ -85,7 +85,7 @@ /* icons #protip: In case you want to use sprites for icons (which I would suggest you do) have a look at - http://css-tricks.com/13224-pseudo-spriting/ to get an idea of how to implement + http://css-tricks.com/13224-pseudo-spriting/ to get an idea of how to implement .context-menu-item.icon:before {} */ .context-menu-item.icon { min-height: 18px; background-repeat: no-repeat; background-position: 4px 2px; } @@ -115,7 +115,7 @@ .context-menu-input > label > select { display: block; width: 100%; - + -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; diff --git a/interface/modules/zend_modules/public/css/jquery.custom-scrollbar.css b/interface/modules/zend_modules/public/css/jquery.custom-scrollbar.css index 8ae9aefa341c..49fea8cad6e3 100644 --- a/interface/modules/zend_modules/public/css/jquery.custom-scrollbar.css +++ b/interface/modules/zend_modules/public/css/jquery.custom-scrollbar.css @@ -160,4 +160,4 @@ .scrollable.modern-skin .scroll-bar.horizontal { height: 10px; margin-top: 2px; -} \ No newline at end of file +} diff --git a/interface/modules/zend_modules/public/css/jquery.treeview-1.4.1/jquery.treeview.css b/interface/modules/zend_modules/public/css/jquery.treeview-1.4.1/jquery.treeview.css index 3236706d57f7..d1d4df7fa44e 100644 --- a/interface/modules/zend_modules/public/css/jquery.treeview-1.4.1/jquery.treeview.css +++ b/interface/modules/zend_modules/public/css/jquery.treeview-1.4.1/jquery.treeview.css @@ -1,4 +1,4 @@ -.treeview, .treeview ul { +.treeview, .treeview ul { padding: 0; margin: 0; list-style: none; @@ -22,7 +22,7 @@ float:none; } -.treeview li { +.treeview li { margin: 0; padding: 3px 0pt 3px 16px; } @@ -41,23 +41,23 @@ .treeview .expandable-hitarea { background-position: -80px -3px; } .treeview li.last { background-position: 0 -1766px } -.treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(images/treeview-default.gif); } +.treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(images/treeview-default.gif); } .treeview li.lastCollapsable { background-position: 0 -111px } .treeview li.lastExpandable { background-position: -32px -67px } .treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea { background-position: 0; } .treeview-red li { background-image: url(images/treeview-red-line.gif); } -.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable { background-image: url(images/treeview-red.gif); } +.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable { background-image: url(images/treeview-red.gif); } .treeview-black li { background-image: url(images/treeview-black-line.gif); } -.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { background-image: url(images/treeview-black.gif); } +.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { background-image: url(images/treeview-black.gif); } .treeview-gray li { background-image: url(images/treeview-gray-line.gif); } -.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable { background-image: url(images/treeview-gray.gif); } +.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable { background-image: url(images/treeview-gray.gif); } .treeview-famfamfam li { background-image: url(images/treeview-famfamfam-line.gif); } -.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable { background-image: url(images/treeview-famfamfam.gif); } +.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable { background-image: url(images/treeview-famfamfam.gif); } .treeview .placeholder { background: url(images/ajax-loader.gif) 0 0 no-repeat; diff --git a/interface/modules/zend_modules/public/css/jquery.treeview-1.4.1/rtl-treeview/jquery.treeview.rtl.css b/interface/modules/zend_modules/public/css/jquery.treeview-1.4.1/rtl-treeview/jquery.treeview.rtl.css index ba7b58578648..70dddd2c930b 100644 --- a/interface/modules/zend_modules/public/css/jquery.treeview-1.4.1/rtl-treeview/jquery.treeview.rtl.css +++ b/interface/modules/zend_modules/public/css/jquery.treeview-1.4.1/rtl-treeview/jquery.treeview.rtl.css @@ -1,4 +1,4 @@ -.treeview, .treeview ul { +.treeview, .treeview ul { padding: 0; margin: 0; list-style: none; @@ -23,7 +23,7 @@ float:none; } -.treeview li { +.treeview li { margin: 0; padding: 0px 16px 2px 0px; } @@ -49,19 +49,19 @@ .treeview-red .hitarea { background-image: url(rtl-treeview-red-c.gif); } .treeview-red .expandable-hitarea { background-image: url(rtl-treeview-red-e.gif); } .treeview-red div.lastCollapsable-hitarea { background-image: url(rtl-treeview-red-lc.gif); } -.treeview-red div.lastExpandable-hitarea { background-image: url(rtl-treeview-red-le.gif); } +.treeview-red div.lastExpandable-hitarea { background-image: url(rtl-treeview-red-le.gif); } .treeview-black li { background-image: url(rtl-treeview-black-line.gif); } .treeview-black .hitarea { background-image: url(rtl-treeview-black-c.gif); } .treeview-black .expandable-hitarea { background-image: url(rtl-treeview-black-e.gif); } .treeview-black div.lastCollapsable-hitarea { background-image: url(rtl-treeview-black-lc.gif); } -.treeview-black div.lastExpandable-hitarea { background-image: url(rtl-treeview-black-le.gif); } +.treeview-black div.lastExpandable-hitarea { background-image: url(rtl-treeview-black-le.gif); } .treeview-gray li { background-image: url(rtl-treeview-gray-line.gif); } .treeview-gray .hitarea { background-image: url(rtl-treeview-gray-c.gif); } .treeview-gray .expandable-hitarea { background-image: url(rtl-treeview-gray-e.gif); } .treeview-gray div.lastCollapsable-hitarea { background-image: url(rtl-treeview-gray-lc.gif); } -.treeview-gray div.lastExpandable-hitarea { background-image: url(rtl-treeview-gray-le.gif); } +.treeview-gray div.lastExpandable-hitarea { background-image: url(rtl-treeview-gray-le.gif); } .filetree li { padding: 0px 16px 2px 0; } .filetree span.folder, .filetree span.file { padding: 0px 16px 2px 0; display: block; } diff --git a/interface/modules/zend_modules/public/css/jquery.treeview.css b/interface/modules/zend_modules/public/css/jquery.treeview.css index 37d950389343..5b01195bf91a 100644 --- a/interface/modules/zend_modules/public/css/jquery.treeview.css +++ b/interface/modules/zend_modules/public/css/jquery.treeview.css @@ -1,4 +1,4 @@ -.treeview, .treeview ul { +.treeview, .treeview ul { padding: 0; margin: 0; list-style: none; @@ -23,7 +23,7 @@ float:none; } -.treeview li { +.treeview li { margin: 0; padding: 3px 0pt 3px 16px; } @@ -42,23 +42,23 @@ .treeview .expandable-hitarea { background-position: -80px -3px; } .treeview li.last { background-position: 0 -1766px } -.treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(treeview-default.gif); } +.treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(treeview-default.gif); } .treeview li.lastCollapsable { background-position: 0 -111px } .treeview li.lastExpandable { background-position: -32px -67px } /*.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea { background-position: 0; }*/ .treeview-red li { background-image: url(../images/treeview-red-line.gif); } -.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable { background-image: url(../images/treeview-red.gif); } +.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable { background-image: url(../images/treeview-red.gif); } .treeview-black li { background-image: url(../images/treeview-black-line.gif); } -.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { background-image: url(../images/treeview-black.gif); } +.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { background-image: url(../images/treeview-black.gif); } .treeview-gray li { background-image: url(../images/treeview-gray-line.gif); } -.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable { background-image: url(../images/treeview-gray.gif); } +.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable { background-image: url(../images/treeview-gray.gif); } .treeview-famfamfam li { background-image: url(../images/treeview-famfamfam-line.gif); } -.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable { background-image: url(../images/treeview-famfamfam.gif); } +.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable { background-image: url(../images/treeview-famfamfam.gif); } .treeview .placeholder { background: url(../images/ajax-loader.gif) 0 0 no-repeat; diff --git a/interface/modules/zend_modules/public/css/mockjax.css b/interface/modules/zend_modules/public/css/mockjax.css index debd8f49ba93..ef81a4e80e4d 100644 --- a/interface/modules/zend_modules/public/css/mockjax.css +++ b/interface/modules/zend_modules/public/css/mockjax.css @@ -5,7 +5,7 @@ overflow: auto; } .autocomplete-suggestion { - padding: 2px 5px; + padding: 2px 5px; white-space: nowrap; overflow: hidden; } @@ -13,7 +13,6 @@ background: #E8F1FF; } .autocomplete-suggestions strong { - font-weight: normal; + font-weight: normal; color: #3399FF; } - diff --git a/interface/modules/zend_modules/public/css/multipledb/multipledb.css b/interface/modules/zend_modules/public/css/multipledb/multipledb.css index 53d20add14c3..9cb1fbebde03 100644 --- a/interface/modules/zend_modules/public/css/multipledb/multipledb.css +++ b/interface/modules/zend_modules/public/css/multipledb/multipledb.css @@ -223,4 +223,4 @@ input[type=submit], input[type=button]{ input.error{ border: 1px solid red!important; -} \ No newline at end of file +} diff --git a/interface/modules/zend_modules/public/css/responsive-tables.css b/interface/modules/zend_modules/public/css/responsive-tables.css index b50946d4a126..b89199593d72 100644 --- a/interface/modules/zend_modules/public/css/responsive-tables.css +++ b/interface/modules/zend_modules/public/css/responsive-tables.css @@ -1,7 +1,7 @@ /* Foundation v2.1.4 http://foundation.zurb.com */ /* Artfully masterminded by ZURB */ -/* -------------------------------------------------- +/* -------------------------------------------------- Table of Contents ----------------------------------------------------- :: Shared Styles @@ -19,20 +19,20 @@ table td, table th { padding: 9px 10px; text-align: left; vertical-align: middle /* Mobile */ @media only screen and (max-width: 767px) { - + table.responsive { margin-bottom: 0; } - + .pinned { position: absolute; left: 0; top: 0; background: #fff; width: 35%; overflow: hidden; overflow-x: scroll; border-right: 1px solid #ccc; border-left: 1px solid #ccc; } .pinned table { border-right: none; border-left: none; width: 100%; } .pinned table th, .pinned table td { white-space: nowrap; } .pinned td:last-child { border-bottom: 0; } - + div.table-wrapper { position: relative; margin-bottom: 20px; overflow: hidden; border-right: 1px solid #ccc; } div.table-wrapper div.scrollable { margin-left: 35%; } - div.table-wrapper div.scrollable { overflow: scroll; overflow-y: hidden; } - + div.table-wrapper div.scrollable { overflow: scroll; overflow-y: hidden; } + table.responsive td, table.responsive th { position: relative; white-space: nowrap; overflow: hidden; } table.responsive th:first-child, table.responsive td:first-child, table.responsive td:first-child, table.responsive.pinned td { display: none; } - - + + } diff --git a/interface/modules/zend_modules/public/css/sendTo.css b/interface/modules/zend_modules/public/css/sendTo.css index f84bc7e06521..c702fc9e0af4 100644 --- a/interface/modules/zend_modules/public/css/sendTo.css +++ b/interface/modules/zend_modules/public/css/sendTo.css @@ -26,7 +26,7 @@ border-top: solid thin #CCCCCC; padding: 5px; position:relative; - + } .ap-st-st-7 { background: none repeat scroll 0 0 #F8F8F8; @@ -53,10 +53,10 @@ } .ap-st-st-11 { padding: 10px; - + } .option_wrap { - + float: left; margin-right: 2%; width: 48%; @@ -77,7 +77,7 @@ .display_block { display: block !important; } - + .send-to{ background: none repeat scroll 0 0 #4285F4; border: medium none; @@ -93,7 +93,7 @@ padding: 2px 6px; font-size: 12px; } - + .ap-st-st-12 { width:50%; } @@ -153,7 +153,7 @@ } .ap-st-st-8 input:focus,.ap-st-st-8 textarea:focus{ outline: none; - box-shadow: 0px 0px 16px rgba(0,0,0,.24); + box-shadow: 0px 0px 16px rgba(0,0,0,.24); } .selected_check { opacity: .3; @@ -181,5 +181,5 @@ margin-left: 18%; } .showcomponentsForCCDA-div { - cursor:pointer; -} \ No newline at end of file + cursor:pointer; +} diff --git a/interface/modules/zend_modules/public/css/slider/css/slide.css b/interface/modules/zend_modules/public/css/slider/css/slide.css index 82ca08c7cb1d..6df83102742a 100644 --- a/interface/modules/zend_modules/public/css/slider/css/slide.css +++ b/interface/modules/zend_modules/public/css/slider/css/slide.css @@ -245,4 +245,3 @@ Version: 1.0 font-size: 0.95em; text-decoration: underline; } - diff --git a/interface/modules/zend_modules/public/css/suggestion.css b/interface/modules/zend_modules/public/css/suggestion.css index cfa5b4033e35..fff6992da6b5 100644 --- a/interface/modules/zend_modules/public/css/suggestion.css +++ b/interface/modules/zend_modules/public/css/suggestion.css @@ -5,7 +5,7 @@ overflow: auto; } .autocomplete-suggestion { - padding: 2px 5px; + padding: 2px 5px; white-space: nowrap; overflow: hidden; } @@ -13,7 +13,7 @@ background: #E8F1FF; } .autocomplete-suggestions strong { - font-weight: normal; + font-weight: normal; color: #3399FF; } ul.suggestion{ diff --git a/interface/modules/zend_modules/public/js/acl/acl.js b/interface/modules/zend_modules/public/js/acl/acl.js index 679e7c6fa82f..8fa522e8f114 100644 --- a/interface/modules/zend_modules/public/js/acl/acl.js +++ b/interface/modules/zend_modules/public/js/acl/acl.js @@ -573,4 +573,4 @@ function addSectionSave() { }, 3000); }, }); -} \ No newline at end of file +} diff --git a/interface/modules/zend_modules/public/js/application/common.js b/interface/modules/zend_modules/public/js/application/common.js index b5aca618b76a..bf894c065330 100644 --- a/interface/modules/zend_modules/public/js/application/common.js +++ b/interface/modules/zend_modules/public/js/application/common.js @@ -37,5 +37,3 @@ }); return resultTranslated; } - - diff --git a/interface/modules/zend_modules/public/js/autosuggest/autosuggest.js b/interface/modules/zend_modules/public/js/autosuggest/autosuggest.js index c3c13bdd5935..97345266d6f2 100644 --- a/interface/modules/zend_modules/public/js/autosuggest/autosuggest.js +++ b/interface/modules/zend_modules/public/js/autosuggest/autosuggest.js @@ -386,6 +386,3 @@ function bodyClick(container,e){ $(container).css("display","none"); } } - - - diff --git a/interface/modules/zend_modules/public/js/carecoordination/demo.js b/interface/modules/zend_modules/public/js/carecoordination/demo.js index 5d914c3fcb78..066c4b2c7835 100644 --- a/interface/modules/zend_modules/public/js/carecoordination/demo.js +++ b/interface/modules/zend_modules/public/js/carecoordination/demo.js @@ -28,4 +28,4 @@ $(function () { cookieId: "treeview-black" }); -}); \ No newline at end of file +}); diff --git a/interface/modules/zend_modules/public/js/carecoordination/encounterManager.js b/interface/modules/zend_modules/public/js/carecoordination/encounterManager.js index c3069ca89b40..d0adf0bd90a7 100644 --- a/interface/modules/zend_modules/public/js/carecoordination/encounterManager.js +++ b/interface/modules/zend_modules/public/js/carecoordination/encounterManager.js @@ -200,4 +200,4 @@ function pagination(action){ document.getElementById('form_current_page').value = Number(current_page)-1; } document.getElementById('theform').submit(); -} \ No newline at end of file +} diff --git a/interface/modules/zend_modules/public/js/scripts/cancercare.js b/interface/modules/zend_modules/public/js/scripts/cancercare.js index f72b89397b4b..484579a60a45 100644 --- a/interface/modules/zend_modules/public/js/scripts/cancercare.js +++ b/interface/modules/zend_modules/public/js/scripts/cancercare.js @@ -76,4 +76,4 @@ function pagination(action) document.getElementById('form_current_page').value = Number(current_page)-1; } document.getElementById('theform').submit(); -} \ No newline at end of file +} diff --git a/interface/modules/zend_modules/public/js/scripts/file_uploader.js b/interface/modules/zend_modules/public/js/scripts/file_uploader.js index cee06ac790f1..3a7e3fb2b83e 100644 --- a/interface/modules/zend_modules/public/js/scripts/file_uploader.js +++ b/interface/modules/zend_modules/public/js/scripts/file_uploader.js @@ -297,4 +297,4 @@ function createStatusbar(obj) sb.hide(); }); } -} \ No newline at end of file +} diff --git a/interface/modules/zend_modules/public/js/scripts/fixdate.js b/interface/modules/zend_modules/public/js/scripts/fixdate.js index 0ba7f942b501..638018db6840 100644 --- a/interface/modules/zend_modules/public/js/scripts/fixdate.js +++ b/interface/modules/zend_modules/public/js/scripts/fixdate.js @@ -27,4 +27,4 @@ function getDateFormat(date,id) { } } $("#" + id).val(input_date_arr); -} \ No newline at end of file +} diff --git a/interface/modules/zend_modules/public/js/scripts/immunization.js b/interface/modules/zend_modules/public/js/scripts/immunization.js index d769ea8889d0..2aa0cc71777a 100644 --- a/interface/modules/zend_modules/public/js/scripts/immunization.js +++ b/interface/modules/zend_modules/public/js/scripts/immunization.js @@ -154,12 +154,3 @@ function validate_search() } } - - - - - - - - - diff --git a/interface/modules/zend_modules/public/js/scripts/syndromicsurveillance.js b/interface/modules/zend_modules/public/js/scripts/syndromicsurveillance.js index 1a635de779cf..d5a305a6cb0d 100644 --- a/interface/modules/zend_modules/public/js/scripts/syndromicsurveillance.js +++ b/interface/modules/zend_modules/public/js/scripts/syndromicsurveillance.js @@ -77,4 +77,4 @@ function pagination(action){ document.getElementById('form_current_page').value = Number(current_page)-1; } document.getElementById('theform').submit(); -} \ No newline at end of file +} diff --git a/interface/new/new_comprehensive_save.php b/interface/new/new_comprehensive_save.php index 9ca73236806f..ba5764e5553b 100644 --- a/interface/new/new_comprehensive_save.php +++ b/interface/new/new_comprehensive_save.php @@ -236,4 +236,3 @@ - diff --git a/interface/orders/load_compendium.php b/interface/orders/load_compendium.php index bd298c67d981..201516b8d5d8 100644 --- a/interface/orders/load_compendium.php +++ b/interface/orders/load_compendium.php @@ -567,4 +567,3 @@ function getLabID($npi) - diff --git a/interface/orders/types.php b/interface/orders/types.php index 2591cbc5c986..4d4317784b84 100644 --- a/interface/orders/types.php +++ b/interface/orders/types.php @@ -405,4 +405,3 @@ function refreshme() { - diff --git a/interface/patient_file/reminder/clinical_reminders.php b/interface/patient_file/reminder/clinical_reminders.php index bd76a000a493..9f9d0c7f7cbc 100644 --- a/interface/patient_file/reminder/clinical_reminders.php +++ b/interface/patient_file/reminder/clinical_reminders.php @@ -286,4 +286,3 @@ function refreshme() { - diff --git a/interface/patient_file/summary/disclosure_full.php b/interface/patient_file/summary/disclosure_full.php index 2bc0615cad34..d9fc214b053b 100644 --- a/interface/patient_file/summary/disclosure_full.php +++ b/interface/patient_file/summary/disclosure_full.php @@ -241,5 +241,3 @@ function refreshme() { - - diff --git a/interface/patient_file/summary/labdata.php b/interface/patient_file/summary/labdata.php index e546c7349d7e..6a8d1fc63f4f 100644 --- a/interface/patient_file/summary/labdata.php +++ b/interface/patient_file/summary/labdata.php @@ -505,4 +505,3 @@ function get_my_graph(){ - diff --git a/interface/patient_tracker/patient_tracker_status.php b/interface/patient_tracker/patient_tracker_status.php index e402f01f23be..668586df3e99 100644 --- a/interface/patient_tracker/patient_tracker_status.php +++ b/interface/patient_tracker/patient_tracker_status.php @@ -124,4 +124,3 @@ - diff --git a/interface/reports/background_services.php b/interface/reports/background_services.php index a5996128c8b8..b2f9c079092c 100644 --- a/interface/reports/background_services.php +++ b/interface/reports/background_services.php @@ -175,4 +175,3 @@ - diff --git a/interface/reports/direct_message_log.php b/interface/reports/direct_message_log.php index a06956b290b7..3eed8b82cff7 100644 --- a/interface/reports/direct_message_log.php +++ b/interface/reports/direct_message_log.php @@ -197,4 +197,3 @@ - diff --git a/interface/super/rules/www/css/cdr-multiselect/common.css b/interface/super/rules/www/css/cdr-multiselect/common.css index f341091225d7..5a0d80a0ea12 100644 --- a/interface/super/rules/www/css/cdr-multiselect/common.css +++ b/interface/super/rules/www/css/cdr-multiselect/common.css @@ -1,253 +1,253 @@ -/* - Copyright (c) 2007, Yahoo! Inc. All rights reserved. - Code licensed under the BSD License: - http://developer.yahoo.net/yui/license.txt - version: 2.2.0 - */ - -table { - font-size: 100%; - *font-size: inherit; -} - -select, -input, -textarea { - font: 99% arial, helvetica, clean, sans-serif; -} - -pre, -code { - font: 115% monospace; - *font-size: 100%; -} - -body * { - line-height: 1.22em; -} - -body, -div, -dl, -dt, -dd, -ul, -ol, -li, -h1, -h2, -h3, -h4, -h5, -h6, -pre, -form, -fieldset, -input, -textarea, -p, -blockquote, -th, -td { - margin: 0; - padding: 0; -} - -table { - border-collapse: collapse; - border-spacing: 0; -} - -fieldset, -img { - border: 0; -} - -address, -caption, -cite, -code, -dfn, -em, -strong, -th, -var { - font-style: normal; - font-weight: normal; -} /*ol,ul {list-style:none;}*/ -caption, -th { - text-align: left; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-size: 100%; - font-weight: normal; -} - -q::before, -q::after { - content: ""; -} - -abbr, -acronym { - border: 0; -} - -/* end of yahoo reset and fonts */ - -body { - background: #fff; - color: #333; - line-height: 1.3; -} - -p { - margin: 0 0 20px; -} - -a { - color: #636363; -} - -a:hover { - text-decoration: none; -} - -strong { - font-weight: bold; -} - -em { - font-style: italic; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-weight: bold; -} - -h1 { - color: #4f6f6c; - font-size: 197%; - margin: 30px 0; -} - -h2 { - color: #4f6f6c; - font-size: 174%; - margin: 20px 0; -} - -h3 { - font-size: 152%; - margin: 10px 0; -} - -h4 { - font-size: 129%; - margin: 10px 0; -} - -pre { - background: #eee; - border: 1px solid #ccc; - font-size: 100%; - margin: 0 0 20px; - overflow: auto; - padding: 20px; -} - -code { - font-size: 100%; - margin: 0; - padding: 0; -} - -ul, -ol { - margin: 10px 0 10px 25px; -} - -ol li { - margin: 0 0 10px; -} - -div#wrapper { - background: #fff; - border: 10px solid #0f1616; - border-width: 0 10px 10px; - margin: 0 auto; - padding: 20px; - width: 560px; -} - -div#header { - border-bottom: 1px dotted; - margin: 0 0 10px; - padding: 0 0 10px; - position: relative; -} - -div#header p { - margin: 0; - padding: 0; -} - -div#header h1 { - margin: 0; - padding: 0; -} - -ul#nav { - list-style: none; - margin: 0; - padding: 0; - position: absolute; - right: 0; - top: 0; -} - -ul#nav li { - display: inline; - padding: 0 0 0 5px; -} - -div#footer { - border-top: 1px dotted; - margin: 40px 0 0; - padding: 10px 0 0; -} - -.left { - float: left; -} - -.right { - float: right; -} - -.clear { - clear: both; -} - -/* multiselect styles */ -.multiselect { - height: 400px; - width: 1050px; -} - -form { - margin: 0; - padding: 0; -} +/* + Copyright (c) 2007, Yahoo! Inc. All rights reserved. + Code licensed under the BSD License: + http://developer.yahoo.net/yui/license.txt + version: 2.2.0 + */ + +table { + font-size: 100%; + *font-size: inherit; +} + +select, +input, +textarea { + font: 99% arial, helvetica, clean, sans-serif; +} + +pre, +code { + font: 115% monospace; + *font-size: 100%; +} + +body * { + line-height: 1.22em; +} + +body, +div, +dl, +dt, +dd, +ul, +ol, +li, +h1, +h2, +h3, +h4, +h5, +h6, +pre, +form, +fieldset, +input, +textarea, +p, +blockquote, +th, +td { + margin: 0; + padding: 0; +} + +table { + border-collapse: collapse; + border-spacing: 0; +} + +fieldset, +img { + border: 0; +} + +address, +caption, +cite, +code, +dfn, +em, +strong, +th, +var { + font-style: normal; + font-weight: normal; +} /*ol,ul {list-style:none;}*/ +caption, +th { + text-align: left; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: 100%; + font-weight: normal; +} + +q::before, +q::after { + content: ""; +} + +abbr, +acronym { + border: 0; +} + +/* end of yahoo reset and fonts */ + +body { + background: #fff; + color: #333; + line-height: 1.3; +} + +p { + margin: 0 0 20px; +} + +a { + color: #636363; +} + +a:hover { + text-decoration: none; +} + +strong { + font-weight: bold; +} + +em { + font-style: italic; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-weight: bold; +} + +h1 { + color: #4f6f6c; + font-size: 197%; + margin: 30px 0; +} + +h2 { + color: #4f6f6c; + font-size: 174%; + margin: 20px 0; +} + +h3 { + font-size: 152%; + margin: 10px 0; +} + +h4 { + font-size: 129%; + margin: 10px 0; +} + +pre { + background: #eee; + border: 1px solid #ccc; + font-size: 100%; + margin: 0 0 20px; + overflow: auto; + padding: 20px; +} + +code { + font-size: 100%; + margin: 0; + padding: 0; +} + +ul, +ol { + margin: 10px 0 10px 25px; +} + +ol li { + margin: 0 0 10px; +} + +div#wrapper { + background: #fff; + border: 10px solid #0f1616; + border-width: 0 10px 10px; + margin: 0 auto; + padding: 20px; + width: 560px; +} + +div#header { + border-bottom: 1px dotted; + margin: 0 0 10px; + padding: 0 0 10px; + position: relative; +} + +div#header p { + margin: 0; + padding: 0; +} + +div#header h1 { + margin: 0; + padding: 0; +} + +ul#nav { + list-style: none; + margin: 0; + padding: 0; + position: absolute; + right: 0; + top: 0; +} + +ul#nav li { + display: inline; + padding: 0 0 0 5px; +} + +div#footer { + border-top: 1px dotted; + margin: 40px 0 0; + padding: 10px 0 0; +} + +.left { + float: left; +} + +.right { + float: right; +} + +.clear { + clear: both; +} + +/* multiselect styles */ +.multiselect { + height: 400px; + width: 1050px; +} + +form { + margin: 0; + padding: 0; +} diff --git a/interface/super/rules/www/css/cdr-multiselect/ui.multiselect.css b/interface/super/rules/www/css/cdr-multiselect/ui.multiselect.css index d9abb924ef20..af68aefd4695 100644 --- a/interface/super/rules/www/css/cdr-multiselect/ui.multiselect.css +++ b/interface/super/rules/www/css/cdr-multiselect/ui.multiselect.css @@ -1,138 +1,138 @@ -/* Multiselect -----------------------------------*/ - -/* TODO: To be removed */ - -.ui-multiselect { - border: solid 1px; - font-size: 0.8em; -} - -.ui-multiselect ul { - user-select: none; -} - -.ui-multiselect li { - cursor: default; - font-size: 11px; - height: 25px; - line-height: 20px; - list-style: none; - margin: 0; - padding: 0; -} - -.ui-multiselect li a { - color: #999; - cursor: pointer; - display: block; - float: left; - padding: 0; - text-decoration: none; -} - -.ui-multiselect li.ui-draggable-dragging { - padding-left: 10px; -} - -.ui-multiselect div.selected { - border: 0; - float: left; - margin: 0; - padding: 0; - position: relative; -} - -.ui-multiselect ul.selected { - background: #fff; - border: 0; - list-style: none; - margin: 0; - overflow: auto; - overflow-x: hidden; - padding: 0; - position: relative; - position: relative; - width: 100%; -} - -.ui-multiselect div.available { - border: 0; - border-left: 1px solid; - float: left; - margin: 0; - padding: 0; - position: relative; -} - -.ui-multiselect ul.available { - background: #fff; - border: 0; - list-style: none; - margin: 0; - overflow: auto; - overflow-x: hidden; - padding: 0; - position: relative; - width: 100%; -} - -.ui-multiselect ul.available li { - padding-left: 10px; -} - -.ui-multiselect .ui-state-default { - border: 0; - margin-bottom: 1px; - padding-left: 20px; - position: relative; -} - -.ui-multiselect .ui-state-hover { - border: 0; -} - -.ui-multiselect .ui-widget-header { - border: 0; - font-size: 11px; - margin-bottom: 1px; -} - -.ui-multiselect .add-all { - float: right; - padding: 7px; -} - -.ui-multiselect .remove-all { - float: right; - padding: 7px; -} - -.ui-multiselect .search { - float: left; - padding: 4px; -} - -.ui-multiselect .count { - float: left; - padding: 7px; -} - -.ui-multiselect li span.ui-icon-arrowthick-2-n-s { - left: 2px; - position: absolute; -} - -.ui-multiselect li a.action { - position: absolute; - right: 2px; - top: 2px; -} - -.ui-multiselect input.search { - height: 17px; - margin: 4px; - opacity: 0.5; - padding: 1px; - width: 100px; -} +/* Multiselect +----------------------------------*/ + +/* TODO: To be removed */ + +.ui-multiselect { + border: solid 1px; + font-size: 0.8em; +} + +.ui-multiselect ul { + user-select: none; +} + +.ui-multiselect li { + cursor: default; + font-size: 11px; + height: 25px; + line-height: 20px; + list-style: none; + margin: 0; + padding: 0; +} + +.ui-multiselect li a { + color: #999; + cursor: pointer; + display: block; + float: left; + padding: 0; + text-decoration: none; +} + +.ui-multiselect li.ui-draggable-dragging { + padding-left: 10px; +} + +.ui-multiselect div.selected { + border: 0; + float: left; + margin: 0; + padding: 0; + position: relative; +} + +.ui-multiselect ul.selected { + background: #fff; + border: 0; + list-style: none; + margin: 0; + overflow: auto; + overflow-x: hidden; + padding: 0; + position: relative; + position: relative; + width: 100%; +} + +.ui-multiselect div.available { + border: 0; + border-left: 1px solid; + float: left; + margin: 0; + padding: 0; + position: relative; +} + +.ui-multiselect ul.available { + background: #fff; + border: 0; + list-style: none; + margin: 0; + overflow: auto; + overflow-x: hidden; + padding: 0; + position: relative; + width: 100%; +} + +.ui-multiselect ul.available li { + padding-left: 10px; +} + +.ui-multiselect .ui-state-default { + border: 0; + margin-bottom: 1px; + padding-left: 20px; + position: relative; +} + +.ui-multiselect .ui-state-hover { + border: 0; +} + +.ui-multiselect .ui-widget-header { + border: 0; + font-size: 11px; + margin-bottom: 1px; +} + +.ui-multiselect .add-all { + float: right; + padding: 7px; +} + +.ui-multiselect .remove-all { + float: right; + padding: 7px; +} + +.ui-multiselect .search { + float: left; + padding: 4px; +} + +.ui-multiselect .count { + float: left; + padding: 7px; +} + +.ui-multiselect li span.ui-icon-arrowthick-2-n-s { + left: 2px; + position: absolute; +} + +.ui-multiselect li a.action { + position: absolute; + right: 2px; + top: 2px; +} + +.ui-multiselect input.search { + height: 17px; + margin: 4px; + opacity: 0.5; + padding: 1px; + width: 100px; +} diff --git a/interface/super/rules/www/js/detail.js b/interface/super/rules/www/js/detail.js index 273fbb044403..f4582073d321 100644 --- a/interface/super/rules/www/js/detail.js +++ b/interface/super/rules/www/js/detail.js @@ -38,4 +38,4 @@ var rule_detail = function( args ) { } }; -} \ No newline at end of file +} diff --git a/interface/super/rules/www/js/jQuery.fn.sortElements.js b/interface/super/rules/www/js/jQuery.fn.sortElements.js index 0efcf9ae2a52..52e06487860b 100644 --- a/interface/super/rules/www/js/jQuery.fn.sortElements.js +++ b/interface/super/rules/www/js/jQuery.fn.sortElements.js @@ -62,4 +62,4 @@ jQuery.fn.sortElements = (function(){ }; -})(); \ No newline at end of file +})(); diff --git a/interface/super/rules/www/js/typeahead.js b/interface/super/rules/www/js/typeahead.js index db5a2d8aac36..b1f0da3a1116 100644 --- a/interface/super/rules/www/js/typeahead.js +++ b/interface/super/rules/www/js/typeahead.js @@ -33,4 +33,4 @@ var type_ahead = function( args ) { } }; -} \ No newline at end of file +} diff --git a/interface/themes/tabs_style_full.scss b/interface/themes/tabs_style_full.scss index 4c5a6aed63cd..c5eb3d7d36d9 100644 --- a/interface/themes/tabs_style_full.scss +++ b/interface/themes/tabs_style_full.scss @@ -345,7 +345,7 @@ body { } /** - * The colors of --light and --dark are flipped. + * The colors of --light and --dark are flipped. * Instead of making changes to --dark and --light, which may have unintended consequences, * this localized change was made to ensure the nav bar met contrast requirements when hovering. */ diff --git a/interface/usergroup/checkpwd_validation.js b/interface/usergroup/checkpwd_validation.js index 90fec80a284a..1dc40f962f42 100644 --- a/interface/usergroup/checkpwd_validation.js +++ b/interface/usergroup/checkpwd_validation.js @@ -8,7 +8,7 @@ //------------------------------------------------------------------- -/* +/* * Fuction to check that the password contains at least 3 of the following: * - an integer one integer * - a lower case letter diff --git a/jest.config.js b/jest.config.js index 2b3268a05c5a..824731a5c721 100644 --- a/jest.config.js +++ b/jest.config.js @@ -27,5 +27,5 @@ const config = { 'vendor' ] }; - + module.exports = config; diff --git a/library/ESign/README b/library/ESign/README index b1ed21610551..4c461df0b0d0 100644 --- a/library/ESign/README +++ b/library/ESign/README @@ -19,17 +19,15 @@ * @author Medical Information Integration, LLC * @link http://www.open-emr.org **/ - + In order to properly build an ESign implementation, developer must implement -the FactoryIF interface. This ensures that you create all of the necessary +the FactoryIF interface. This ensures that you create all of the necessary parts of an ESign implementation. -Developer must subclass Abstract_Controller for the routing to work properly. +Developer must subclass Abstract_Controller for the routing to work properly. Developer should implement the IFactory interface so the ESign API can assemble the ESign object using \ESign\Api::createEsign(FactoryIF) Refer to the Form and Encounter implementations for examples on how to implement the required interfaces. - - \ No newline at end of file diff --git a/library/ajax/get_preference_answers.php b/library/ajax/get_preference_answers.php index 43c8a75da9c1..96d2dc81ff33 100644 --- a/library/ajax/get_preference_answers.php +++ b/library/ajax/get_preference_answers.php @@ -27,8 +27,8 @@ die(json_encode(['error' => 'LOINC code required'])); } -$sql = "SELECT * FROM preference_value_sets - WHERE loinc_code = ? AND active = 1 +$sql = "SELECT * FROM preference_value_sets + WHERE loinc_code = ? AND active = 1 ORDER BY sort_order"; $result = QueryUtils::fetchRecords($sql, [$loincCode]); diff --git a/library/js/common.js b/library/js/common.js index a09639faf7e5..1aa02169865e 100644 --- a/library/js/common.js +++ b/library/js/common.js @@ -59,4 +59,3 @@ function policykeyup(e) e.value = filteredString; return; } - diff --git a/library/js/gSignIn.js b/library/js/gSignIn.js index 1bcb07ea14d4..ad29a59f55ba 100644 --- a/library/js/gSignIn.js +++ b/library/js/gSignIn.js @@ -4,7 +4,7 @@ var GoogleSigin = { ele: null, hide_element : '.gs-hide-element', signin_btn : '.form-google-sign-button', - error_container: null, + error_container: null, init: function(client_id, params = {}) { this.client_id = client_id; this.ele = Object.prototype.hasOwnProperty.call(params, 'ele') ? $(params['ele']) : null; @@ -23,8 +23,8 @@ var GoogleSigin = { }, renderButton: function() { google.accounts.id.renderButton( - $(this.ele).find("#google-signin")[0], - { + $(this.ele).find("#google-signin")[0], + { 'theme': 'outline', 'prompt': 'select_account', 'scope': 'profile email', @@ -34,9 +34,9 @@ var GoogleSigin = { ); }, onSignInSuccess: function(googleUser, thisele) { - + const id_token = googleUser.credential; - + if(thisele.error_container != "") { $(thisele.error_container).find("#form-error-container").remove(); } @@ -47,10 +47,10 @@ var GoogleSigin = { $(thisele.ele).find(this.hide_element).hide(); var element = thisele.ele[0].querySelector(thisele.signin_btn); - + element.click(); element.disabled = true; - + }, onSignInFailure: function(error, thisele) { if(thisele.error_container != "") { @@ -73,4 +73,4 @@ var GoogleSigin = { $(this.ele).find(this.hide_element).show(); }); } -}; \ No newline at end of file +}; diff --git a/library/js/oeUI/oeFileUploads.js b/library/js/oeUI/oeFileUploads.js index fef4a392639c..ae237773f8df 100644 --- a/library/js/oeUI/oeFileUploads.js +++ b/library/js/oeUI/oeFileUploads.js @@ -30,4 +30,4 @@ $(function () { } }); }); -}); \ No newline at end of file +}); diff --git a/library/js/reasonCodeWidget.js b/library/js/reasonCodeWidget.js index 0945f1fd9b53..52c9f8331004 100644 --- a/library/js/reasonCodeWidget.js +++ b/library/js/reasonCodeWidget.js @@ -270,4 +270,4 @@ window.oeUI = oeUI; } // we wrap everything into an oeUI so we don't get namespace clashes. -)(window, window.oeUI || {}); \ No newline at end of file +)(window, window.oeUI || {}); diff --git a/library/js/utility.js b/library/js/utility.js index d2b428e8b9d4..5eca480e632f 100644 --- a/library/js/utility.js +++ b/library/js/utility.js @@ -653,25 +653,25 @@ function js_uniqid(prefix = "", moreEntropy = true) { const time = Date.now(); const micro = (performance.now() * 1000) % 1000000; const uniqidTime = Math.floor(time / 1000) * 1000000 + Math.floor(micro); - + // Convert to hex (PHP uses 8 chars for seconds + 5 for microseconds) let id = uniqidTime.toString(16); - + if (moreEntropy) { // Ensure at least 4 random digits, exactly 13 total const entropyDigits = 4; const timestampDigits = 13 - entropyDigits; // 9 digits - + // Trim timestamp if needed to make room for entropy if (id.length > timestampDigits) { id = id.slice(0, timestampDigits); // Keep the first 9 digits } - + // Generate random hex string const maxEntropy = Math.pow(16, entropyDigits); const entropy = Math.floor(Math.random() * maxEntropy); id += entropy.toString(16).padStart(entropyDigits, '0'); } - + return prefix + id; } diff --git a/library/js/vendors/validate/validate_extend.js b/library/js/vendors/validate/validate_extend.js index 8833b3a04f49..5f9fbda3d12f 100644 --- a/library/js/vendors/validate/validate_extend.js +++ b/library/js/vendors/validate/validate_extend.js @@ -232,6 +232,3 @@ validate.validators.luhn = function(value, options) { } } } - - - diff --git a/library/templates/address_save_handler.php b/library/templates/address_save_handler.php index 790a51d304bd..d67e4665c50b 100644 --- a/library/templates/address_save_handler.php +++ b/library/templates/address_save_handler.php @@ -32,7 +32,7 @@ function saveAddressesForPatient($pid, $addressData) { $logger = new SystemLogger(); $logger->debug("Saving addresses for patient", [ - 'pid' => $pid, + 'pid' => $pid, 'addressData' => $addressData ]); diff --git a/library/templates/relation_display.php b/library/templates/relation_display.php index e6c7884cb14d..0842174bc563 100644 --- a/library/templates/relation_display.php +++ b/library/templates/relation_display.php @@ -63,7 +63,7 @@ 'target_id' => $targetId, 'target_contact_id' => $targetContactId, 'first_name' => $record['first_name'] ?? '', - 'middle_name' => $record['middle_name'] ?? '', + 'middle_name' => $record['middle_name'] ?? '', 'last_name' => $record['last_name'] ?? '', 'gender' => $record['gender'] ?? '', 'birth_date' => $record['birth_date'] ?? '', diff --git a/library/templates/relation_form.php b/library/templates/relation_form.php index 1177eacbc95c..e47bf7170d98 100644 --- a/library/templates/relation_form.php +++ b/library/templates/relation_form.php @@ -77,7 +77,7 @@ 'target_id' => $targetId, 'target_contact_id' => $targetContactId, 'first_name' => $record['first_name'] ?? '', - 'middle_name' => $record['middle_name'] ?? '', + 'middle_name' => $record['middle_name'] ?? '', 'last_name' => $record['last_name'] ?? '', 'gender' => $record['gender'] ?? '', 'birth_date' => $record['birth_date'] ?? '', diff --git a/library/textformat.js b/library/textformat.js index 1705916c6880..667798ce93e0 100644 --- a/library/textformat.js +++ b/library/textformat.js @@ -282,4 +282,3 @@ function maskblur(elem, mask) { elem.value = v; } } - diff --git a/library/translation.inc.php b/library/translation.inc.php index f241e5edacc7..8432ffc9fdf0 100644 --- a/library/translation.inc.php +++ b/library/translation.inc.php @@ -17,7 +17,7 @@ function xlWarmCache(): void if (!(function_exists('xl'))) { /** * Translation function - the translation engine for OpenEMR - * + * * Translates a given constant string into the current session language. * Note: In some installation scenarios this function may already be declared, * so we check to ensure it hasn't been declared yet. @@ -99,7 +99,7 @@ function xl($constant) // /** * Conditionally translates list labels based on global setting - * + * * Only translates if $GLOBALS['translate_lists'] is set to true. * Added 5-09 by BM. * @@ -113,7 +113,7 @@ function xl_list_label($constant) /** * Conditionally translates layout labels based on global setting - * + * * Only translates if $GLOBALS['translate_layout'] is set to true. * Added 5-09 by BM. * @@ -127,7 +127,7 @@ function xl_layout_label($constant) /** * Conditionally translates access control group labels based on global setting - * + * * Only translates if $GLOBALS['translate_gacl_groups'] is set to true. * Added 6-2009 by BM. * @@ -141,7 +141,7 @@ function xl_gacl_group($constant) /** * Conditionally translates patient form (notes) titles based on global setting - * + * * Only translates if $GLOBALS['translate_form_titles'] is set to true. * Added 6-2009 by BM. * @@ -155,7 +155,7 @@ function xl_form_title($constant) /** * Conditionally translates document categories based on global setting - * + * * Only translates if $GLOBALS['translate_document_categories'] is set to true. * Added 6-2009 by BM. * @@ -169,7 +169,7 @@ function xl_document_category($constant) /** * Conditionally translates appointment categories based on global setting - * + * * Only translates if $GLOBALS['translate_appt_categories'] is set to true. * Added 6-2009 by BM. * diff --git a/modules/sms_email_reminder/batch_reminders.php b/modules/sms_email_reminder/batch_reminders.php index ef6b947a68fd..a63bc655f0dc 100644 --- a/modules/sms_email_reminder/batch_reminders.php +++ b/modules/sms_email_reminder/batch_reminders.php @@ -72,4 +72,3 @@

- diff --git a/modules/sms_email_reminder/readme.txt b/modules/sms_email_reminder/readme.txt index fc2abb0cafb0..be91555da9da 100644 --- a/modules/sms_email_reminder/readme.txt +++ b/modules/sms_email_reminder/readme.txt @@ -7,4 +7,3 @@ every hour. notifications settings and adjust interface/globals.php accordingly. Also need to comment out the exit command from the beginning of the scripts. - diff --git a/phpunit.integration.xml b/phpunit.integration.xml index f3f9294234a8..8bfb77122886 100644 --- a/phpunit.integration.xml +++ b/phpunit.integration.xml @@ -1,5 +1,5 @@ - + diff --git a/portal/patient/.htaccess b/portal/patient/.htaccess index d3a698d74511..f5eedc917aab 100644 --- a/portal/patient/.htaccess +++ b/portal/patient/.htaccess @@ -4,4 +4,4 @@ RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l -RewriteRule (.*) index.php?_REWRITE_COMMAND=$1 [QSA,L] \ No newline at end of file +RewriteRule (.*) index.php?_REWRITE_COMMAND=$1 [QSA,L] diff --git a/portal/patient/fwk/libs/.htaccess b/portal/patient/fwk/libs/.htaccess index 3418e55a6838..8d2f25636ddd 100644 --- a/portal/patient/fwk/libs/.htaccess +++ b/portal/patient/fwk/libs/.htaccess @@ -1 +1 @@ -deny from all \ No newline at end of file +deny from all diff --git a/portal/patient/fwk/libs/savant/LICENSE.TXT b/portal/patient/fwk/libs/savant/LICENSE.TXT index 02bbb60bc49a..65c5ca88a67c 100644 --- a/portal/patient/fwk/libs/savant/LICENSE.TXT +++ b/portal/patient/fwk/libs/savant/LICENSE.TXT @@ -162,4 +162,4 @@ General Public License ever published by the Free Software Foundation. whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the -Library. \ No newline at end of file +Library. diff --git a/portal/patient/scripts/app.js b/portal/patient/scripts/app.js index a18f3c545e4c..fdf10a353830 100644 --- a/portal/patient/scripts/app.js +++ b/portal/patient/scripts/app.js @@ -106,4 +106,3 @@ var app = { version: 1.1 } - diff --git a/portal/patient/scripts/app/onsiteactivityviews.js b/portal/patient/scripts/app/onsiteactivityviews.js index bc870f43e0f7..047bbbcbbcc0 100644 --- a/portal/patient/scripts/app/onsiteactivityviews.js +++ b/portal/patient/scripts/app/onsiteactivityviews.js @@ -339,4 +339,3 @@ const actpage = { } }, }; - diff --git a/portal/patient/scripts/app/onsiteportalactivities.js b/portal/patient/scripts/app/onsiteportalactivities.js index 8c12dec21610..2677b145293f 100644 --- a/portal/patient/scripts/app/onsiteportalactivities.js +++ b/portal/patient/scripts/app/onsiteportalactivities.js @@ -220,4 +220,3 @@ var pageAudit = { }); } }; - diff --git a/public/smart-styles/smart-light.json b/public/smart-styles/smart-light.json index 0b3d55ff8217..6bf04ca6e3ad 100644 --- a/public/smart-styles/smart-light.json +++ b/public/smart-styles/smart-light.json @@ -10,4 +10,4 @@ "dim_spacing_size": "20px", "font_family_body": "'Lato','Helvetica',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji'", "font_family_heading": "'Lato','Helvetica',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji'" -} \ No newline at end of file +} diff --git a/sites/default/documents/edi/README.txt b/sites/default/documents/edi/README.txt index 796751c9d7c3..e72bbdfe8e8c 100644 --- a/sites/default/documents/edi/README.txt +++ b/sites/default/documents/edi/README.txt @@ -1,3 +1,2 @@ This directory is for saving transmitted electronic batches for various kinds of problem solving, and should be writable by the web server. - diff --git a/sites/default/documents/era/README.txt b/sites/default/documents/era/README.txt index 986a42e6bc4e..4f604e9d78d4 100644 --- a/sites/default/documents/era/README.txt +++ b/sites/default/documents/era/README.txt @@ -1,4 +1,3 @@ This directory saves output from automated remittance (X12 835) processing. This includes archived remittance files, and copies of the generated HTML reports. - diff --git a/sites/default/documents/onsite_portal_documents/templates/Hipaa_Document_Oemr.tpl b/sites/default/documents/onsite_portal_documents/templates/Hipaa_Document_Oemr.tpl index 2c13538f825a..e707083dffae 100644 --- a/sites/default/documents/onsite_portal_documents/templates/Hipaa_Document_Oemr.tpl +++ b/sites/default/documents/onsite_portal_documents/templates/Hipaa_Document_Oemr.tpl @@ -1,27 +1,27 @@

HIPAA Declaration

Given today: {DOS} OpenEMR Software makes it a priority to keep this piece of software updated with the most recent available security options, so it will integrate easily into a HIPAA-compliant practice and will protect our customers with at least the official HIPAA regulations. -The Practice: -(a) Is required by federal law to maintain the privacy of your PHI and to provide you with this Privacy Notice detailing the Practice's legal duties and privacy practices with respect to your PHI -(b) Under the Privacy Rule, it may be required by other laws to grant greater access or maintain greater restrictions on the use of, or release of your PHI than that which is provided for under federal HIPAA laws. -(c) Is required to abide by the terms of the Privacy Notice +The Practice: +(a) Is required by federal law to maintain the privacy of your PHI and to provide you with this Privacy Notice detailing the Practice's legal duties and privacy practices with respect to your PHI +(b) Under the Privacy Rule, it may be required by other laws to grant greater access or maintain greater restrictions on the use of, or release of your PHI than that which is provided for under federal HIPAA laws. +(c) Is required to abide by the terms of the Privacy Notice (d) Reserves the right to change the terms of this Privacy Notice and make new Privacy Notice provisions effective for all of your PHI that it maintains if needed -(e) Will distribute any revised Privacy Notice to you prior to implementation -(f) Will not retaliate against you for filing a complaint +(e) Will distribute any revised Privacy Notice to you prior to implementation +(f) Will not retaliate against you for filing a complaint Patient Communications: -Health Insurance Privacy Act 1996 USA, requires to inform you of the following government stipulations in order for us to contact you with educational and promotional items in the future via e-mail, U.S. mail, telephone, and/or prerecorded messages. We will not share, sell, or use your personal contact information for spam messages. +Health Insurance Privacy Act 1996 USA, requires to inform you of the following government stipulations in order for us to contact you with educational and promotional items in the future via e-mail, U.S. mail, telephone, and/or prerecorded messages. We will not share, sell, or use your personal contact information for spam messages. I am aware and have read the policies of this practice towards secrecy and digital information protection: -The Practice set up their User accounts for the OpenEMR databases, so it requires Users to log in with a password. -The User have to exit or log out of any medical information when not using it or as soon as Default timeout is reached. -When using this medical information registration in front of patients the User should use the "Privacy" feature to hide PHI (Personal Health Information) for other patients in the Search screen. -We have developed and will use standard operating procedures (SOPs) requiring any use of the Export Patients Medical or other information to be documented. -Users are only allowed to store a copy of your Medical information on a laptop computer or other portable media that is taken outside The Practice if recorded in writing. By signing out of The Practice with any portable device or transport medium this information is to be erased when finished with the need to take this information out of The Practice, if possible this information is only to be taken outside The Practice in encrypted format. +The Practice set up their User accounts for the OpenEMR databases, so it requires Users to log in with a password. +The User have to exit or log out of any medical information when not using it or as soon as Default timeout is reached. +When using this medical information registration in front of patients the User should use the "Privacy" feature to hide PHI (Personal Health Information) for other patients in the Search screen. +We have developed and will use standard operating procedures (SOPs) requiring any use of the Export Patients Medical or other information to be documented. +Users are only allowed to store a copy of your Medical information on a laptop computer or other portable media that is taken outside The Practice if recorded in writing. By signing out of The Practice with any portable device or transport medium this information is to be erased when finished with the need to take this information out of The Practice, if possible this information is only to be taken outside The Practice in encrypted format. Only specific technicians may have occasional access to our hardware and Software. The HIPAA Privacy Rule requires that a practice have a signed Business Associate Contract before granting such access. The Technicians are trained on HIPAA regulations and limit the use and disclosure of customer data to the minimum necessary.

I acknowledge receipt of this notice, have read the contents and understand the content.

Patient Name: {PatientName} Sex: {PatientSex} hereby signs and agree to the terms of this agreement . -Our external ID:{PatientID} -Born: {PatientDOB} -Home Address: {Address} +Our external ID:{PatientID} +Born: {PatientDOB} +Home Address: {Address} Zip: {Zip}; City: {City}; State: {State} Home Phone: {PatientPhone} Patient Signature:{PatientSignature} diff --git a/sites/default/documents/onsite_portal_documents/templates/Insurance_Info.tpl b/sites/default/documents/onsite_portal_documents/templates/Insurance_Info.tpl index 81404d1a806d..8d277a108fc6 100644 --- a/sites/default/documents/onsite_portal_documents/templates/Insurance_Info.tpl +++ b/sites/default/documents/onsite_portal_documents/templates/Insurance_Info.tpl @@ -7,7 +7,7 @@ Address {TextInput} State {TextInput} Zip {TextInput}
Are you personally responsible for the payment of your fees? {ynRadioGroup} -If not, who is? +If not, who is? Name:{TextInput} Relationship:{TextInput} DOB:{TextInput}
Who to notify in emergency (nearest relative or friend)? @@ -15,4 +15,4 @@ Name{TextInput} Relationship{TextInput} Address {TextInput} State {TextInput} Zip {TextInput} Work Phone {TextInput} Home Phone {TextInput} - \ No newline at end of file + diff --git a/sites/default/documents/onsite_portal_documents/templates/Privacy_Document.tpl b/sites/default/documents/onsite_portal_documents/templates/Privacy_Document.tpl index a74a8e4cc1f8..247e9492a614 100644 --- a/sites/default/documents/onsite_portal_documents/templates/Privacy_Document.tpl +++ b/sites/default/documents/onsite_portal_documents/templates/Privacy_Document.tpl @@ -15,8 +15,8 @@ Medicare Patients: I certify that the information given by me for application for payment under title XVIII of the Social Security Act is correct. I authorize any holder of medical or other relevant information about me be released to the Social Security Administration or it's intermediaries of carriers and such information needed to support application for payment. Including records pertaining to HIV status or treatment (AIDS records), drug and alcohol treatment, and or psychiatric treatment. I assign and authorize payment directly to {ReferringDOC} for the unpaid charges for the physician's services. I understand that I am responsible for all insurance deductibles and coinsurance. Comments: {TextInput} Signature: {PatientSignature} -Do you authorize electronic signature {CheckMark} +Do you authorize electronic signature {CheckMark} Relationship to patient (if signed by a personal representative): {TextInput} Are you Primary Care Giver:{ynRadioGroup} Date: {DOS} -

Clinic Representative Signature {ReferringDOC} Signed: {AdminSignature}


\ No newline at end of file +

Clinic Representative Signature {ReferringDOC} Signed: {AdminSignature}


diff --git a/sites/default/documents/temp/README b/sites/default/documents/temp/README index 37cc0183ead0..bb1a333a2737 100644 --- a/sites/default/documents/temp/README +++ b/sites/default/documents/temp/README @@ -1,2 +1,2 @@ This folder holds temporary files that created when downloading file from couchDB. -Here the system stores the file with the content from couchDB and removes it after downloading is finished. \ No newline at end of file +Here the system stores the file with the content from couchDB and removes it after downloading is finished. diff --git a/sites/default/images/logos/core/favicon/README b/sites/default/images/logos/core/favicon/README index 68de2cb273f9..d21c00949ece 100644 --- a/sites/default/images/logos/core/favicon/README +++ b/sites/default/images/logos/core/favicon/README @@ -1,16 +1,16 @@ -# Favicon - -This README ensures the directory path exists for branding the favicon. - -To change the standard "OpenEMR" favicon, place an image file -in this folder named "favicon.ico". - -Only put **one** file in this folder, or you will encounter unexpected results. - -This allows every multisite install to showcase a custom favicon. - -## Note -Favicons have become more robost throughout the years, and various images can -now be used based on the browser (i.e. macOS Safari can render an SVG with -various options. At this time, OpenEMR can only customize a .ico file). Future -work will expand to create the various favicons that can be consumed. +# Favicon + +This README ensures the directory path exists for branding the favicon. + +To change the standard "OpenEMR" favicon, place an image file +in this folder named "favicon.ico". + +Only put **one** file in this folder, or you will encounter unexpected results. + +This allows every multisite install to showcase a custom favicon. + +## Note +Favicons have become more robost throughout the years, and various images can +now be used based on the browser (i.e. macOS Safari can render an SVG with +various options. At this time, OpenEMR can only customize a .ico file). Future +work will expand to create the various favicons that can be consumed. diff --git a/sites/default/images/logos/core/menu/primary/README b/sites/default/images/logos/core/menu/primary/README index 99849848e904..0e8fd464806b 100644 --- a/sites/default/images/logos/core/menu/primary/README +++ b/sites/default/images/logos/core/menu/primary/README @@ -1,11 +1,11 @@ -# Primary Menu Logo - -This README ensures the directory path exists for branding the primary menu logo. - -To change the standard "OpenEMR" logo on the primary menu logo, place an image file -in this folder named "logo". File type can be PNG, JPG, SVG, or any other -file type that can be rendered using the `` tag's `src` property. - -Only put **one** file in this folder, or you will encounter unexpected results. - -This allows every multisite install to showcase a custom primary logo. +# Primary Menu Logo + +This README ensures the directory path exists for branding the primary menu logo. + +To change the standard "OpenEMR" logo on the primary menu logo, place an image file +in this folder named "logo". File type can be PNG, JPG, SVG, or any other +file type that can be rendered using the `` tag's `src` property. + +Only put **one** file in this folder, or you will encounter unexpected results. + +This allows every multisite install to showcase a custom primary logo. diff --git a/sql/2_6_0-to-2_6_1_upgrade.sql b/sql/2_6_0-to-2_6_1_upgrade.sql index 7058280a79c2..d53fcf3495f3 100644 --- a/sql/2_6_0-to-2_6_1_upgrade.sql +++ b/sql/2_6_0-to-2_6_1_upgrade.sql @@ -460,9 +460,9 @@ UNIQUE (`foreign_id`,`foreign_table`,`local_id`,`local_table`) ALTER TABLE `x12_partners` ADD `id_number` VARCHAR( 255 ) AFTER `name` ; -ALTER TABLE `phone_numbers` CHANGE `prefix` `prefix` VARCHAR( 3 ) DEFAULT NULL; +ALTER TABLE `phone_numbers` CHANGE `prefix` `prefix` VARCHAR( 3 ) DEFAULT NULL; ALTER TABLE `phone_numbers` CHANGE `area_code` `area_code` VARCHAR( 3 ) DEFAULT NULL; -ALTER TABLE `phone_numbers` CHANGE `number` `number` VARCHAR( 4 ) DEFAULT NULL; +ALTER TABLE `phone_numbers` CHANGE `number` `number` VARCHAR( 4 ) DEFAULT NULL; # # Table structure for table `integration_mapping` diff --git a/sql/2_7_2-to-2_7_3_upgrade.sql b/sql/2_7_2-to-2_7_3_upgrade.sql index 516f37d3c79f..0861491b9ef4 100644 --- a/sql/2_7_2-to-2_7_3_upgrade.sql +++ b/sql/2_7_2-to-2_7_3_upgrade.sql @@ -57,9 +57,9 @@ ALTER TABLE openemr_postcalendar_events ALTER TABLE lists ADD diagnosis varchar(255) NOT NULL DEFAULT ''; -## +## ## Table structure for table `batchcom` -## +## CREATE TABLE IF NOT EXISTS `batchcom` ( `id` bigint(20) NOT NULL auto_increment, diff --git a/sql/2_8_1-to-2_8_2_upgrade.sql b/sql/2_8_1-to-2_8_2_upgrade.sql index eeeb3ba4dc53..74626303ea46 100644 --- a/sql/2_8_1-to-2_8_2_upgrade.sql +++ b/sql/2_8_1-to-2_8_2_upgrade.sql @@ -83,9 +83,9 @@ INSERT INTO `lang_constants` VALUES (56, 'until'); # Generation Time: Feb 14, 2006 at 09:21 AM # Server version: 4.1.12 # PHP Version: 4.4.0-3ubuntu1 -# +# # Database : `openemr` -# +# # # Dumping data for table `lang_definitions` @@ -265,7 +265,7 @@ INSERT INTO `lang_definitions` VALUES (173, 178, 3, 'Cualquier'); #EndIf #IfMissingColumn registry priority -## alters to categorize forms / per Mark +## alters to categorize forms / per Mark ALTER TABLE registry ADD COLUMN priority INT DEFAULT 0 AFTER date; ALTER TABLE registry ADD COLUMN category VARCHAR(255) DEFAULT "category" AFTER priority; ALTER TABLE registry ADD COLUMN nickname VARCHAR(255) DEFAULT '' AFTER category; diff --git a/sql/2_9_0-to-3_0_0_upgrade.sql b/sql/2_9_0-to-3_0_0_upgrade.sql index 8dd2f7790a65..8dd9e555866e 100644 --- a/sql/2_9_0-to-3_0_0_upgrade.sql +++ b/sql/2_9_0-to-3_0_0_upgrade.sql @@ -9,7 +9,7 @@ ALTER TABLE insurance_data #EndIf #IfMissingColumn forms deleted -ALTER TABLE forms +ALTER TABLE forms ADD deleted TINYINT DEFAULT '0' NOT NULL COMMENT 'flag indicates form has been deleted'; #EndIf diff --git a/sql/3_0_1-to-3_1_0_upgrade.sql b/sql/3_0_1-to-3_1_0_upgrade.sql index e53d752a18de..79b8a995447b 100644 --- a/sql/3_0_1-to-3_1_0_upgrade.sql +++ b/sql/3_0_1-to-3_1_0_upgrade.sql @@ -1,5 +1,5 @@ #IfMissingColumn pnotes deleted -ALTER TABLE `pnotes` +ALTER TABLE `pnotes` ADD `deleted` TINYINT DEFAULT '0' COMMENT 'flag indicates note is deleted'; #EndIf @@ -129,14 +129,14 @@ INSERT INTO list_options VALUES ('drug_interval','17','p.r.n.' ,17,0,0); INSERT INTO list_options VALUES ('drug_interval','18','stat' ,18,0,0); #EndIf -UPDATE list_options - SET option_id = '6' WHERE option_id = ' 6' and list_id = 'drug_route'; +UPDATE list_options + SET option_id = '6' WHERE option_id = ' 6' and list_id = 'drug_route'; UPDATE list_options SET title = 'mcg' WHERE option_id = '7' and list_id = 'drug_units'; UPDATE list_options SET title = 'grams' WHERE option_id = '8' and list_id = 'drug_units'; -UPDATE `layout_options` +UPDATE `layout_options` SET data_type = 26 WHERE form_id = 'DEM' and field_id = 'state'; UPDATE `layout_options` SET data_type = 26 WHERE form_id = 'DEM' and field_id = 'country_code'; @@ -145,11 +145,11 @@ UPDATE `layout_options` UPDATE `layout_options` SET data_type = 26, list_id = 'country', fld_length = 0, max_length = 0, edit_options = '' WHERE form_id = 'DEM' and field_id = 'em_country'; -ALTER TABLE `prices` +ALTER TABLE `prices` CHANGE `pr_selector` `pr_selector` VARCHAR( 255 ) NOT NULL default '' COMMENT 'template selector for drugs, empty for codes'; #IfMissingColumn form_encounter provider_id -ALTER TABLE `form_encounter` +ALTER TABLE `form_encounter` ADD `provider_id` INT(11) DEFAULT '0' COMMENT 'default and main provider for this visit'; UPDATE form_encounter AS fe, forms AS f, billing AS b, users AS u SET fe.provider_id = u.id WHERE @@ -184,12 +184,12 @@ UPDATE form_encounter AS fe, forms AS f, billing AS b #EndIf #IfMissingColumn codes active -ALTER TABLE `codes` +ALTER TABLE `codes` ADD `active` TINYINT(1) DEFAULT 1 COMMENT '0 = inactive, 1 = active'; #EndIf #IfMissingColumn drugs active -ALTER TABLE `drugs` +ALTER TABLE `drugs` ADD `active` TINYINT(1) DEFAULT 1 COMMENT '0 = inactive, 1 = active'; #EndIf @@ -348,7 +348,7 @@ ALTER TABLE gacl_aro_map MODIFY section_value varchar(150) NOT NULL default '0'; ALTER TABLE gacl_aro_map MODIFY value varchar(150) NOT NULL; #EndIf -#IfTable gacl_aro_sections +#IfTable gacl_aro_sections ALTER TABLE gacl_aro_sections MODIFY value varchar(150) NOT NULL; #EndIf diff --git a/sql/3_1_0-to-3_2_0_upgrade.sql b/sql/3_1_0-to-3_2_0_upgrade.sql index 9c33f8c76d7c..b85d9efbc430 100644 --- a/sql/3_1_0-to-3_2_0_upgrade.sql +++ b/sql/3_1_0-to-3_2_0_upgrade.sql @@ -1,5 +1,5 @@ #IfMissingColumn users calendar -ALTER TABLE `users` +ALTER TABLE `users` ADD `calendar` TINYINT(1) NOT NULL DEFAULT 0 COMMENT '1 = appears in calendar'; UPDATE users SET calendar = 1 WHERE authorized = 1 AND ( info IS NULL OR info NOT LIKE '%Nocalendar%' ); #EndIf @@ -18,12 +18,12 @@ CREATE TABLE `lbf_data` ( #EndIf #IfMissingColumn form_encounter supervisor_id -ALTER TABLE `form_encounter` +ALTER TABLE `form_encounter` ADD `supervisor_id` INT(11) DEFAULT '0' COMMENT 'supervising provider, if any, for this visit'; #EndIf #IfMissingColumn list_options mapping -ALTER TABLE `list_options` +ALTER TABLE `list_options` ADD `mapping` varchar(15) NOT NULL DEFAULT ''; #EndIf @@ -49,12 +49,12 @@ CREATE TABLE gprelations ( #EndIf #IfMissingColumn insurance_companies alt_cms_id -ALTER TABLE `insurance_companies` +ALTER TABLE `insurance_companies` ADD `alt_cms_id` varchar(15) NOT NULL DEFAULT ''; #EndIf #IfMissingColumn x12_partners x12_isa05 -ALTER TABLE `x12_partners` +ALTER TABLE `x12_partners` ADD `x12_isa05` char(2) NOT NULL DEFAULT 'ZZ', ADD `x12_isa07` char(2) NOT NULL DEFAULT 'ZZ', ADD `x12_isa14` char(1) NOT NULL DEFAULT '0', @@ -62,4 +62,3 @@ ALTER TABLE `x12_partners` ADD `x12_gs02` varchar(15) NOT NULL DEFAULT '', ADD `x12_per06` varchar(80) NOT NULL DEFAULT ''; #EndIf - diff --git a/sql/3_2_0-to-4_0_0_upgrade.sql b/sql/3_2_0-to-4_0_0_upgrade.sql index 1d6d7d03d517..ab981985ea22 100644 --- a/sql/3_2_0-to-4_0_0_upgrade.sql +++ b/sql/3_2_0-to-4_0_0_upgrade.sql @@ -1,21 +1,21 @@ -- -- Comment Meta Language for sql upgrades: -- --- Each section within an upgrade sql file is enveloped with an #If*/#EndIf block. At first glance, these appear to be standard mysql +-- Each section within an upgrade sql file is enveloped with an #If*/#EndIf block. At first glance, these appear to be standard mysql -- comments meant to be cryptic hints to -other developers about the sql goodness contained therein. However, were you to rely on such basic premises, -- you would find yourself grossly deceived. Indeed, without the knowledge that these comments are, in fact a sneakily embedded meta language derived --- for a purpose none-other than to aid in the protection of the database during upgrades, you would no doubt be subject to much ridicule and public +-- for a purpose none-other than to aid in the protection of the database during upgrades, you would no doubt be subject to much ridicule and public -- beratement at the hands of the very developers who envisioned such a crafty use of comments. -jwallace -- -- While these lines are as enigmatic as they are functional, there is a method to the madness. Let's take a moment to briefly go over proper comment meta language use. --- --- The #If* sections have the behavior of functions and come complete with arguments supplied command-line style -- --- Your Comment meta language lines cannot contain any other comment styles such as the nefarious double dashes "--" lest your lines be skipped and --- the blocks automatcially executed with out regard to the existing database state. +-- The #If* sections have the behavior of functions and come complete with arguments supplied command-line style +-- +-- Your Comment meta language lines cannot contain any other comment styles such as the nefarious double dashes "--" lest your lines be skipped and +-- the blocks automatcially executed with out regard to the existing database state. -- -- Comment Meta Language Constructs: --- +-- -- #IfNotTable -- argument: table_name -- behavior: if the table_name does not exist, the block will be executed @@ -48,7 +48,7 @@ -- 2) The table table_name does not have a row where colname = value AND colname3 = value3. -- #EndIf --- all blocks are terminated with and #EndIf statement. +-- all blocks are terminated with and #EndIf statement. #IfMissingColumn log patient_id ALTER TABLE log ADD patient_id bigint(20) DEFAULT NULL; @@ -525,7 +525,7 @@ CREATE TABLE `procedure_report` ( `review_status` varchar(31) NOT NULL DEFAULT 'received' COMMENT 'pending review status: received,reviewed', PRIMARY KEY (`procedure_report_id`), KEY procedure_order_id (procedure_order_id) -) ENGINE=MyISAM; +) ENGINE=MyISAM; #EndIf #IfNotTable procedure_result @@ -544,7 +544,7 @@ CREATE TABLE `procedure_result` ( `result_status` varchar(31) NOT NULL DEFAULT '' COMMENT 'preliminary, cannot be done, final, corrected, incomplete...etc.', PRIMARY KEY (`procedure_result_id`), KEY procedure_report_id (procedure_report_id) -) ENGINE=MyISAM; +) ENGINE=MyISAM; #EndIf #IfMissingColumn history_data recreational_drugs @@ -646,7 +646,7 @@ CREATE TABLE `globals` ( `gl_index` int(11) NOT NULL DEFAULT 0, `gl_value` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`gl_name`, `gl_index`) -) ENGINE=MyISAM; +) ENGINE=MyISAM; #EndIf #IfNotTable lang_custom @@ -700,7 +700,7 @@ INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('lists', 'co #EndIf #IfMissingColumn codes reportable -ALTER TABLE `codes` +ALTER TABLE `codes` ADD `reportable` TINYINT(1) DEFAULT 0 COMMENT '0 = non-reportable, 1 = reportable'; #EndIf diff --git a/sql/4_0_0-to-4_1_0_upgrade.sql b/sql/4_0_0-to-4_1_0_upgrade.sql index 81f992996fe9..05a97cc7ae3f 100644 --- a/sql/4_0_0-to-4_1_0_upgrade.sql +++ b/sql/4_0_0-to-4_1_0_upgrade.sql @@ -687,9 +687,9 @@ CREATE TABLE `rule_target` ( `group_id` bigint(20) NOT NULL DEFAULT 1 COMMENT 'Contains group id to identify collection of targets in a rule', `include_flag` tinyint(1) NOT NULL default 0 COMMENT '0 is exclude and 1 is include', `required_flag` tinyint(1) NOT NULL default 0 COMMENT '0 is required and 1 is optional', - `method` varchar(31) NOT NULL DEFAULT '' COMMENT 'Maps to list_options list rule_targets', + `method` varchar(31) NOT NULL DEFAULT '' COMMENT 'Maps to list_options list rule_targets', `value` varchar(255) NOT NULL DEFAULT '' COMMENT 'Data is dependent on the method', - `interval` bigint(20) NOT NULL DEFAULT 0 COMMENT 'Only used in interval entries', + `interval` bigint(20) NOT NULL DEFAULT 0 COMMENT 'Only used in interval entries', KEY (`id`) ) ENGINE=MyISAM ; INSERT INTO `rule_target` ( `id`, `group_id`, `include_flag`, `required_flag`, `method`, `value`, `interval` ) VALUES ('rule_htn_bp_measure', 1, 1, 1, 'target_interval', 'year', 1); @@ -1011,7 +1011,7 @@ CREATE TABLE `temp_table_one` ( ) ENGINE=MyISAM ; INSERT INTO `temp_table_one` (`id`, `seq`) VALUES ( IF( ((SELECT MAX(`ct_id`) FROM `code_types`)>=100), ((SELECT MAX(`ct_id`) FROM `code_types`) + 1), 100 ) , IF( ((SELECT MAX(`ct_seq`) FROM `code_types`)>=100), ((SELECT MAX(`ct_seq`) FROM `code_types`) + 1), 100 ) ); INSERT INTO `code_types` (`ct_key`, `ct_id`, `ct_seq`, `ct_mod`, `ct_just`, `ct_fee`, `ct_rel`, `ct_nofs`, `ct_diag` ) VALUES ('CVX', (SELECT MAX(`id`) FROM `temp_table_one`), (SELECT MAX(`seq`) FROM `temp_table_one`), 0, '' , 0, 0, 1, 0); -INSERT INTO `codes` (`id`, `code_text`, `code_text_short`, `code`, `code_type`, `modifier`, `units`, `fee`, `superbill`, `related_code`, `taxrates`, `cyp_factor`, `active`) +INSERT INTO `codes` (`id`, `code_text`, `code_text_short`, `code`, `code_type`, `modifier`, `units`, `fee`, `superbill`, `related_code`, `taxrates`, `cyp_factor`, `active`) VALUES (NULL, "diphtheria, tetanus toxoids and pertussis vaccine", "DTP", 1, (SELECT MAX(`id`) from `temp_table_one`), '', 0, 0, '', '', '', '', 1), (NULL, "poliovirus vaccine, live, oral", "OPV", 2, (SELECT MAX(`id`) from `temp_table_one`), '', 0, 0, '', '', '', '', 1), @@ -1636,7 +1636,7 @@ UPDATE globals SET gl_value = 'style_purple.css' WHERE gl_name = 'css_header' AN #EndIf #IfMissingColumn form_misc_billing_options date_initial_treatment -ALTER TABLE `form_misc_billing_options` +ALTER TABLE `form_misc_billing_options` ADD date_initial_treatment date default NULL; #EndIf @@ -1868,4 +1868,3 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`) VALUES ('msp_remit_codes', 'W1', 'W1', 216, 0, 0, '', 'Workers'' compensation jurisdictional fee schedule adjustment. Note: If adjustment is at the Claim Level, the payer must send and the provider should refer to the 835 Class of Contract Code Identification Segment (Loop 2100 Other Claim Related Information '); INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`) VALUES ('msp_remit_codes', 'W2', 'W2', 217, 0, 0, '', 'Payment reduced or denied based on workers'' compensation jurisdictional regulations or payment policies, use only if no other code is applicable. Note: If adjustment is at the Claim Level, the payer must send and the provider should refer to the 835 Insur'); #EndIf - diff --git a/sql/4_1_0-to-4_1_1_upgrade.sql b/sql/4_1_0-to-4_1_1_upgrade.sql index df679f38b50b..f3007fd55065 100644 --- a/sql/4_1_0-to-4_1_1_upgrade.sql +++ b/sql/4_1_0-to-4_1_1_upgrade.sql @@ -670,4 +670,3 @@ UPDATE `code_types` SET `ct_proc`='1' WHERE `ct_key`='CPT4' OR `ct_key`='HCPCS' #IfNotIndex forms form_id CREATE INDEX `form_id` ON `forms` (`form_id`); #EndIf - diff --git a/sql/4_1_1-to-4_1_2_upgrade.sql b/sql/4_1_1-to-4_1_2_upgrade.sql index 0c7a642e4fa3..0490e2151251 100644 --- a/sql/4_1_1-to-4_1_2_upgrade.sql +++ b/sql/4_1_1-to-4_1_2_upgrade.sql @@ -73,7 +73,7 @@ ALTER TABLE `version` ADD COLUMN `v_acl` int(11) NOT NULL DEFAULT 0; #EndIf #IfMissingColumn documents_legal_detail dld_moved -ALTER TABLE `documents_legal_detail` ADD COLUMN `dld_moved` tinyint(4) NOT NULL DEFAULT '0'; +ALTER TABLE `documents_legal_detail` ADD COLUMN `dld_moved` tinyint(4) NOT NULL DEFAULT '0'; #EndIf #IfMissingColumn documents_legal_detail dld_patient_comments @@ -283,7 +283,7 @@ INSERT INTO code_types (ct_key, ct_id, ct_seq, ct_mod, ct_just, ct_fee, ct_rel, DROP TABLE `temp_table_one`; #EndIf -#IfNotTable background_services +#IfNotTable background_services CREATE TABLE IF NOT EXISTS `background_services` ( `name` varchar(31) NOT NULL, `title` varchar(127) NOT NULL COMMENT 'name for reports', @@ -304,12 +304,12 @@ INSERT INTO `background_services` (`name`, `title`, `execute_interval`, `functio #EndIf #IfNotRow users username phimail-service -INSERT INTO `users` (username,password,lname,authorized,active) +INSERT INTO `users` (username,password,lname,authorized,active) VALUES ('phimail-service','NoLogin','phiMail Gateway',0,0); #EndIf #IfNotRow users username portal-user -INSERT INTO `users` (username,password,lname,authorized,active) +INSERT INTO `users` (username,password,lname,authorized,active) VALUES ('portal-user','NoLogin','Patient Portal User',0,0); #EndIf @@ -457,7 +457,7 @@ CREATE TABLE `users_secure` ( `salt_history2` varchar(255), PRIMARY KEY (`id`), UNIQUE KEY `USERNAME_ID` (`id`,`username`) -) ENGINE=InnoDb; +) ENGINE=InnoDb; #EndIf #IfMissingColumn patient_access_onsite portal_salt @@ -493,5 +493,3 @@ CREATE TABLE `misc_address_book` ( #IfMissingColumn documents imported ALTER TABLE `documents` ADD COLUMN `imported` TINYINT DEFAULT 0 NULL COMMENT 'Parsing status for CCR/CCD/CCDA importing'; #EndIf - - diff --git a/sql/4_1_2-to-4_2_0_upgrade.sql b/sql/4_1_2-to-4_2_0_upgrade.sql index 47162dc5e149..022896db11ee 100644 --- a/sql/4_1_2-to-4_2_0_upgrade.sql +++ b/sql/4_1_2-to-4_2_0_upgrade.sql @@ -124,20 +124,20 @@ ALTER TABLE `users` ADD COLUMN `email_direct` varchar(255) NOT NULL default ''; #IfNotTable erx_ttl_touch CREATE TABLE `erx_ttl_touch` ( - `patient_id` BIGINT(20) UNSIGNED NOT NULL COMMENT 'Patient record Id', + `patient_id` BIGINT(20) UNSIGNED NOT NULL COMMENT 'Patient record Id', `process` ENUM('allergies','medications') NOT NULL COMMENT 'NewCrop eRx SOAP process', - `updated` DATETIME NOT NULL COMMENT 'Date and time of last process update for patient', - PRIMARY KEY (`patient_id`, `process`) ) + `updated` DATETIME NOT NULL COMMENT 'Date and time of last process update for patient', + PRIMARY KEY (`patient_id`, `process`) ) ENGINE = InnoDB COMMENT = 'Store records last update per patient data process'; #EndIf #IfMissingColumn form_misc_billing_options box_14_date_qual -ALTER TABLE `form_misc_billing_options` +ALTER TABLE `form_misc_billing_options` ADD COLUMN `box_14_date_qual` CHAR(3) NULL DEFAULT NULL; #EndIf #IfMissingColumn form_misc_billing_options box_15_date_qual -ALTER TABLE `form_misc_billing_options` +ALTER TABLE `form_misc_billing_options` ADD COLUMN `box_15_date_qual` CHAR(3) NULL DEFAULT NULL; #EndIf @@ -2877,7 +2877,7 @@ UPDATE `clinical_rules` SET `amc_2014_flag` = 1 , `amc_code_2014` = '170.314(g)( #EndIf #IfNotRow2D list_options list_id lists option_id amendment_status - INSERT INTO `list_options` ( `list_id`, `option_id`, `title` ) + INSERT INTO `list_options` ( `list_id`, `option_id`, `title` ) VALUES ('lists' ,'amendment_status','Amendment Status'); INSERT INTO `list_options` ( `list_id`, `option_id`, `title`, `seq`, `is_default` ) VALUES @@ -2885,8 +2885,8 @@ UPDATE `clinical_rules` SET `amc_2014_flag` = 1 , `amc_code_2014` = '170.314(g)( ('amendment_status' ,'rejected','Rejected', 20, 0); #EndIf -#IfNotRow2D list_options list_id lists option_id amendment_from - INSERT INTO `list_options` ( `list_id`, `option_id`, `title` ) +#IfNotRow2D list_options list_id lists option_id amendment_from + INSERT INTO `list_options` ( `list_id`, `option_id`, `title` ) VALUES ('lists' ,'amendment_from','Amendment From'); INSERT INTO `list_options` ( `list_id`, `option_id`, `title`, `seq`, `is_default` ) VALUES diff --git a/sql/4_2_0-to-4_2_1_upgrade.sql b/sql/4_2_0-to-4_2_1_upgrade.sql index d5e738880670..a0f4e227b325 100644 --- a/sql/4_2_0-to-4_2_1_upgrade.sql +++ b/sql/4_2_0-to-4_2_1_upgrade.sql @@ -114,7 +114,7 @@ CREATE TABLE `patient_tracker` ( `original_user` varchar(255) NOT NULL default '' COMMENT 'This is the user that created the original record', `encounter` bigint(20) NOT NULL default '0', `lastseq` varchar(4) NOT NULL default '' COMMENT 'The element file should contain this number of elements', - `random_drug_test` TINYINT(1) DEFAULT NULL COMMENT 'NULL if not randomized. If randomized, 0 is no, 1 is yes', + `random_drug_test` TINYINT(1) DEFAULT NULL COMMENT 'NULL if not randomized. If randomized, 0 is no, 1 is yes', `drug_screen_completed` TINYINT(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY (`eid`), @@ -143,7 +143,7 @@ ALTER TABLE `list_options` ADD COLUMN `toggle_setting_1` tinyint(1) NOT NULL def UPDATE `list_options` SET `notes`='FF2414|10' , `toggle_setting_1`='1' WHERE `option_id`='@' AND `list_id` = 'apptstat'; UPDATE `list_options` SET `notes`='FF6619|10' , `toggle_setting_1`='1' WHERE `option_id`='~' AND `list_id` = 'apptstat'; #EndIf - + #IfMissingColumn list_options toggle_setting_2 ALTER TABLE `list_options` ADD COLUMN `toggle_setting_2` tinyint(1) NOT NULL DEFAULT '0'; UPDATE `list_options` SET `notes`='0BBA34|0' , `toggle_setting_2`='1' WHERE `option_id`='!' AND `list_id` = 'apptstat'; @@ -11694,11 +11694,11 @@ ALTER TABLE pnotes ADD COLUMN `portal_relation` VARCHAR(100) NULL; #EndIf #IfMissingColumn pnotes is_msg_encrypted -ALTER TABLE pnotes ADD is_msg_encrypted TINYINT(2) DEFAULT '0' COMMENT 'Whether messsage encrypted 0-Not encrypted, 1-Encrypted'; +ALTER TABLE pnotes ADD is_msg_encrypted TINYINT(2) DEFAULT '0' COMMENT 'Whether messsage encrypted 0-Not encrypted, 1-Encrypted'; #EndIf #IfMissingColumn log log_from -ALTER TABLE `log` ADD `log_from` VARCHAR(20) DEFAULT 'open-emr'; +ALTER TABLE `log` ADD `log_from` VARCHAR(20) DEFAULT 'open-emr'; #EndIf #IfMissingColumn log menu_item_id @@ -11767,7 +11767,7 @@ SET @backup_group_name = (SELECT group_name FROM layout_options WHERE field_id=' SET @seq = (SELECT MAX(seq) FROM layout_options WHERE group_name = IFNULL(@group_name,@backup_group_name) AND form_id='DEM'); INSERT INTO `layout_options` (`form_id`, `field_id`, `group_name`, `title`, `seq`, `data_type`, `uor`, `fld_length`, `max_length`, `list_id`, `titlecols`, `datacols`, `default_value`, `edit_options`, `description`) VALUES ('DEM', 'county', IFNULL(@group_name,@backup_group_name), 'County', @seq+1, 26, 1, 0, 0, 'county', 1, 1, '', '', 'County' ) ; ALTER TABLE `patient_data` ADD COLUMN `county` varchar(40) NOT NULL default ''; -#EndIf +#EndIf #IfNotListImmunizationManufacturer #EndIf @@ -12032,7 +12032,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id image_results_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('image_results_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–20', 0, 0, 0, 1); #EndIf @@ -12043,7 +12043,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id family_health_history_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('family_health_history_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–21', 0, 0, 0, 1); #EndIf @@ -12054,7 +12054,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id electronic_notes_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('electronic_notes_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–22', 0, 0, 0, 1); #EndIf @@ -12065,7 +12065,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id secure_messaging_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('secure_messaging_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)', 0, 0, 0, 1); #EndIf @@ -12076,7 +12076,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id view_download_transmit_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('view_download_transmit_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–14', 0, 0, 1, 1); #EndIf @@ -12087,7 +12087,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id cpoe_radiology_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('cpoe_radiology_amc', 0, 0, 0, 0, '', '', 1, '170.304(a)', 0, 0, 1, '170.314(g)(1)/(2)–7', 0, 0, 0, 1); #EndIf @@ -12098,7 +12098,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id cpoe_proc_orders_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('cpoe_proc_orders_amc', 0, 0, 0, 0, '', '', 1, '170.304(a)', 0, 0, 1, '170.314(g)(1)/(2)–7', 0, 0, 0, 1); #EndIf @@ -12109,7 +12109,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id send_reminder_stage2_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('send_reminder_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(d)', 0, 0, 1, '170.314(g)(1)/(2)–13', 0, 0, 0, 1); #EndIf @@ -12120,7 +12120,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id cpoe_med_stage2_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('cpoe_med_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(a)', 0, 0, 1, '170.314(g)(1)/(2)–7', 0, 0, 1, 1); #EndIf @@ -12131,7 +12131,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id patient_edu_stage2_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('patient_edu_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.302(m)', 0, 0, 1, '170.314(g)(1)/(2)–16', 0, 0, 0, 1); #EndIf @@ -12142,7 +12142,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id record_vitals_1_stage1_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('record_vitals_1_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 0, 0); #EndIf @@ -12153,7 +12153,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id record_vitals_2_stage1_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('record_vitals_2_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 1, 1); #EndIf @@ -12164,7 +12164,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id record_vitals_3_stage1_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('record_vitals_3_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 1, 1); #EndIf @@ -12175,7 +12175,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id record_vitals_4_stage1_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('record_vitals_4_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 1, 1); #EndIf @@ -12186,7 +12186,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id record_vitals_stage2_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('record_vitals_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 0, 0); #EndIf @@ -12197,7 +12197,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id provide_sum_pat_stage2_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('provide_sum_pat_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(h)', 0, 0, 1, '170.314(g)(1)/(2)–15', 0, 0, 0, 1); #EndIf @@ -12208,7 +12208,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id vdt_stage2_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('vdt_stage2_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–14', 0, 0, 1, 1); #EndIf @@ -12219,7 +12219,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id send_sum_stage1_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('send_sum_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.304(i)', 0, 0, 1, '170.314(g)(1)/(2)–18', 0, 0, 1, 0); #EndIf @@ -12230,7 +12230,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id send_sum_1_stage2_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('send_sum_1_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(i)', 0, 0, 1, '170.314(g)(1)/(2)–18', 0, 0, 0, 1); #EndIf @@ -12241,7 +12241,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id send_sum_stage2_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('send_sum_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(i)', 0, 0, 1, '170.314(g)(1)/(2)–18', 0, 0, 0, 1); #EndIf @@ -12252,7 +12252,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id e_prescribe_stage1_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('e_prescribe_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.304(b)', 0, 0, 1, '170.314(g)(1)/(2)–8', 0, 0, 1, 0); #EndIf @@ -12263,7 +12263,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id e_prescribe_1_stage2_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('e_prescribe_1_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(b)', 0, 0, 1, '170.314(g)(1)/(2)–8', 0, 0, 0, 1); #EndIf @@ -12274,7 +12274,7 @@ INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default` #EndIf #IfNotRow clinical_rules id e_prescribe_2_stage2_amc - INSERT INTO `clinical_rules` + INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('e_prescribe_2_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(b)', 0, 0, 1, '170.314(g)(1)/(2)–8', 0, 0, 0, 1); #EndIf @@ -12453,7 +12453,7 @@ ALTER TABLE transactions DROP COLUMN reply_related_code; #EndIf #IfRow2D clinical_rules id secure_messaging_amc amc_code_2014 170.314(g)(1)/(2) -UPDATE `clinical_rules` SET `amc_code_2014` = '170.314(g)(1)/(2)-19' WHERE `id` = 'secure_messaging_amc' AND `amc_code_2014` = '170.314(g)(1)/(2)'; +UPDATE `clinical_rules` SET `amc_code_2014` = '170.314(g)(1)/(2)-19' WHERE `id` = 'secure_messaging_amc' AND `amc_code_2014` = '170.314(g)(1)/(2)'; #EndIf #IfMissingColumn documents documentationOf @@ -12588,7 +12588,7 @@ INSERT INTO `rule_target` ( `id`, `group_id`, `include_flag`, `required_flag`, ` UPDATE `list_options` SET `title` = 'Generate and transmit permissible prescriptions electronically (Not including controlled substances).' WHERE list_id = 'clinical_rules' AND option_id = 'e_prescribe_stage1_amc'; #EndIf -#IfRow2D list_options list_id clinical_rules option_id e_prescribe_2_stage2_amc +#IfRow2D list_options list_id clinical_rules option_id e_prescribe_2_stage2_amc UPDATE `list_options` SET `title` = 'Generate and transmit permissible prescriptions electronically (Not including controlled substances).' WHERE list_id = 'clinical_rules' AND option_id = 'e_prescribe_2_stage2_amc'; #EndIf diff --git a/sql/5_0_2-to-6_0_0_upgrade.sql b/sql/5_0_2-to-6_0_0_upgrade.sql index 4b5337815343..29479a1cfb44 100644 --- a/sql/5_0_2-to-6_0_0_upgrade.sql +++ b/sql/5_0_2-to-6_0_0_upgrade.sql @@ -2391,4 +2391,3 @@ VALUES (NULL, "SARS-COV-2 (COVID-19) vaccine, mRNA, spike protein, LNP, preservative free, 30 mcg/0.3mL dose", "COVID-19, mRNA, LNP-S, PF, 30 mcg/0.3 mL dose", 208, @codetypeid, '', 0, 0, '', '', '', 1), (NULL, "SARS-COV-2 (COVID-19) vaccine, vector non-replicating, recombinant spike protein-ChAdOx1, preservative free, 0.5 mL ", "COVID-19 vaccine, vector-nr, rS-ChAdOx1, PF, 0.5 mL", 210, @codetypeid, '', 0, 0, '', '', '', 1); #EndIf - diff --git a/sql/6_0_0-to-6_1_0_upgrade.sql b/sql/6_0_0-to-6_1_0_upgrade.sql index be5b01875a62..0aed5464456c 100644 --- a/sql/6_0_0-to-6_1_0_upgrade.sql +++ b/sql/6_0_0-to-6_1_0_upgrade.sql @@ -1501,4 +1501,3 @@ PRIMARY KEY (`id`), UNIQUE KEY (`email`) ) ENGINE=InnoDB; #EndIf - diff --git a/sql/6_1_0-to-7_0_0_upgrade.sql b/sql/6_1_0-to-7_0_0_upgrade.sql index 9cc4f7f83dd0..ee6989cbd4a3 100644 --- a/sql/6_1_0-to-7_0_0_upgrade.sql +++ b/sql/6_1_0-to-7_0_0_upgrade.sql @@ -995,4 +995,4 @@ ALTER TABLE `module_configuration` ADD COLUMN `date_modified` DATETIME DEFAULT C #EndIf #IfUpdateEditOptionsNeeded remove DEM K birth_fname, pubpid, name_history -#EndIf \ No newline at end of file +#EndIf diff --git a/sql/database_de_identification.sql b/sql/database_de_identification.sql index cb1438f4a5ae..ca9bed5c83bb 100644 --- a/sql/database_de_identification.sql +++ b/sql/database_de_identification.sql @@ -11,7 +11,7 @@ $ $ CREATE PROCEDURE `de_identification`() BEGIN -#Run the de-identification process. +#Run the de-identification process. DECLARE unknown_table_name INT DEFAULT 0; DECLARE unknown_col_name INT DEFAULT 0; DECLARE unknown_prepare_stmt INT DEFAULT 0; @@ -21,16 +21,16 @@ DECLARE CONTINUE HANDLER FOR 1054 SET unknown_col_name = 1; DECLARE CONTINUE HANDLER FOR 1243 SET unknown_prepare_stmt = 1; DECLARE CONTINUE HANDLER FOR 1050 SET table_already_exists = 1; -#Create the transaction_metadata_de_identification table, which contains the tables/columns to include in the report, and whether the table/column needs to be de-identified or not. +#Create the transaction_metadata_de_identification table, which contains the tables/columns to include in the report, and whether the table/column needs to be de-identified or not. call load_transaction_metadata_de_identification_table(); -#Create an empty de_identified_data table, which will contain the complete,de-identified data once this process is finished. +#Create an empty de_identified_data table, which will contain the complete,de-identified data once this process is finished. call create_de_identified_data_table(); -#Filter the patients to include in the report, based on the drugs,immunizations, and diagnosis selected. +#Filter the patients to include in the report, based on the drugs,immunizations, and diagnosis selected. call filter_pid(); -#For each patient, and table/column name to include in the report,select the data from the appropriate tables, and insert into the de_identified_data table. Skip any tables/columns containing identifiers (names, telephone, etc). +#For each patient, and table/column name to include in the report,select the data from the appropriate tables, and insert into the de_identified_data table. Skip any tables/columns containing identifiers (names, telephone, etc). call perform_de_identification(); #Handle error conditions @@ -60,7 +60,7 @@ call drop_no_value_column(); #Drop transaction table created from De-identification process call drop_transaction_tables(); END -$ +$ -- -------------------------------------------------------- @@ -80,7 +80,7 @@ BEGIN #temp_re_identification : Contains a re-identification code for each patient. #temp_patient_record_id : A temporary table, contains the primary id of the record corresponding to a patient. #param_include_tables : Contains the tables/columns to include in this report. -#param_filter_pid : Contains the drugs/immunizations/diagnosis for filtering which patients to include +#param_filter_pid : Contains the drugs/immunizations/diagnosis for filtering which patients to include DROP TABLE IF EXISTS transaction_metadata_de_identification; CREATE TABLE transaction_metadata_de_identification (table_name varchar(255) NOT NULL,col_name varchar(255) NOT NULL, load_to_lexical_table tinyint(1) NOT NULL,include_in_de_identification int(2) NOT NULL,include_in_re_identification tinyint(1) NOT NULL); @@ -110,7 +110,7 @@ CREATE PROCEDURE `load_lexical_look_up_table`() BEGIN #Populate lexical look up table with 18 unique identifiers specified by HIPAA as identifying data from openemr database -#The lexical_look_up_table is used to store the text of known patient identifiers, such as patient names (John Smith), telephone numbers (408-111-222), etc. Later on, during the identification process, these text snippets will be removed from unstructured data, such as patient notes. +#The lexical_look_up_table is used to store the text of known patient identifiers, such as patient names (John Smith), telephone numbers (408-111-222), etc. Later on, during the identification process, these text snippets will be removed from unstructured data, such as patient notes. DECLARE tableName VARCHAR(255) ; DECLARE colName VARCHAR(255) ; @@ -130,7 +130,7 @@ FETCH cur1 INTO tableName, colName; CLOSE cur1; update lexical_look_up_table set lex_text = LOWER(lex_text); delete from lexical_look_up_table where char_length(lex_text) <= 1; -END +END $ -- -------------------------------------------------------- @@ -147,10 +147,10 @@ BEGIN #The param_include_tables contains the tables/columns that will be used in this report. #The metadata_de_identification table tells which tables/columns need to be de-identified. -#Populate the transaction_metadata_de_identification table with the same information as the metadata_de_identification table, except only include the tables/columns that are included in this data report. +#Populate the transaction_metadata_de_identification table with the same information as the metadata_de_identification table, except only include the tables/columns that are included in this data report. #Include_tables contains string of table names separated by '#', like "history_data#prescriptions#" -#Loop through each table name by getting the substring delimited by '#'. +#Loop through each table name by getting the substring delimited by '#'. declare nowords int; declare subString varchar(255); declare include_tables varchar(500); @@ -158,7 +158,7 @@ declare includeUnstructured int; select value into include_tables from param_include_tables; select include_unstructured into includeUnstructured from param_include_tables; delete from transaction_metadata_de_identification; -#In parameter individual values are separated by '#' +#In parameter individual values are separated by '#' SET include_tables = LTRIM(include_tables); SET include_tables = RTRIM(include_tables); IF include_tables = "all" THEN @@ -199,7 +199,7 @@ $ CREATE PROCEDURE `create_de_identified_data_table`() BEGIN -#This creates a table (de_identified_data) containing all the patient data to be included in the report. Each table/column that is included in this report (such as history_data/tobacco) will have a corresponding column in the de_identified_data. +#This creates a table (de_identified_data) containing all the patient data to be included in the report. Each table/column that is included in this report (such as history_data/tobacco) will have a corresponding column in the de_identified_data. #In addition, the de_identified_data table will have columns number, sub_number which contain the primary id of the table/column row where this data was read from. DECLARE colName VARCHAR(255) ; @@ -225,7 +225,7 @@ SET @v = CONCAT("alter table de_identified_data add column `", colName, "` text alter table de_identified_data add column immunization_name text not null; - END IF; + END IF; #For duplicate column name append table name with the col name IF(duplicateColumn) THEN SET newColName = CONCAT(tableName,":",colName); @@ -257,7 +257,7 @@ CREATE PROCEDURE `filter_pid`() BEGIN #Retrieve a list of patient ids that satisfy the selections picked in the de-identification Input screen. # The table param_filter_pid contains the parameters (start/end date, diagnosis, drugs, immunizations) -#for filter out which patients to select. Store the selected patient ids in the temp_patient_id_table +#for filter out which patients to select. Store the selected patient ids in the temp_patient_id_table declare startDate varchar(30); declare endDate varchar(30); declare diagnosis_list varchar(1000); @@ -274,7 +274,7 @@ drop table IF EXISTS t1; create table t1 (pid int); delete from temp_patient_id_table; insert into temp_patient_id_table (pid) select pid from patient_data; -#In parameter individual values are separated by '#' +#In parameter individual values are separated by '#' SET diagnosis_list = LTRIM(diagnosis_list); SET diagnosis_list = RTRIM(diagnosis_list); IF (diagnosis_list != "all") then @@ -332,8 +332,8 @@ insert into t1 (pid) select patient_id from immunizations where administered_dat END IF; DELETE FROM temp_patient_id_table where pid NOT IN (SELECT pid FROM t1); DELETE FROM t1; - -END + +END $ -- -------------------------------------------------------- @@ -347,7 +347,7 @@ $ $ CREATE PROCEDURE `drop_no_value_column`() begin -#In table de_identified_data, remove any empty columns (columns that contain an empty value, for every patient). +#In table de_identified_data, remove any empty columns (columns that contain an empty value, for every patient). DECLARE done INT DEFAULT 0; DECLARE val int default 0; declare colName VARCHAR(255) ; @@ -358,18 +358,18 @@ OPEN metadate_cursor; WHILE (done = 0) do SET @v = CONCAT("select count(`", colName ,"`) INTO @val from de_identified_data where `", colName ,"` != ' '"); PREPARE stmt1 FROM @v; -EXECUTE stmt1; +EXECUTE stmt1; if @val <= 1 then SET @v = CONCAT("alter table de_identified_data drop column `", colName ,"`"); PREPARE stmt1 FROM @v; -EXECUTE stmt1; +EXECUTE stmt1; DELETE FROM transaction_metadata_de_identification where col_name = colName; - + end if; FETCH metadate_cursor INTO colName; end while; close metadate_cursor; -end +end $ -- -------------------------------------------------------- @@ -383,7 +383,7 @@ $ $ CREATE FUNCTION `match_regular_expression`(unstructuredData varchar(255)) RETURNS varchar(255) BEGIN -#Given some unstructured data (like patient notes), replace any urls, dates, or names in the data with 'xxx'. Then return the modified data. +#Given some unstructured data (like patient notes), replace any urls, dates, or names in the data with 'xxx'. Then return the modified data. DECLARE newString varchar(255); DECLARE subString varchar(30); DECLARE noWords INT; @@ -392,10 +392,10 @@ SET newString = " "; SET unstructuredData = CONCAT(unstructuredData,' '); SET noWords=LENGTH(unstructuredData) - LENGTH(REPLACE(unstructuredData, ' ', '')) ; WHILE( noWords >= count) do - + SET subString = SUBSTRING_INDEX( SUBSTRING_INDEX( unstructuredData, ' ', count), ' ', -1 ); #Check for url -IF ( LOCATE("www.", subString) || LOCATE(".com", subString) || LOCATE("http", subString) || LOCATE(".co", subString) || LOCATE(".in", subString) )THEN +IF ( LOCATE("www.", subString) || LOCATE(".com", subString) || LOCATE("http", subString) || LOCATE(".co", subString) || LOCATE(".in", subString) )THEN SET subString = "xxx"; #Check for date (yyyy/mm/dd or dd-mm-yyyy) ELSEIF (SELECT subString REGEXP "([0-9]{4})[-|/|.|\]([0-9]{1,2})[-|/|.|\]([0-9]{1,2})")THEN SET subString = LEFT(subString,4); @@ -537,11 +537,11 @@ if charPosition && tableName = substring(colName,1,charPosition-1) then set colName = substring(colName,charPosition+1); - set columnFlag = 1; + set columnFlag = 1; if (tableName = 'lists' ) then set @z = CONCAT("update de_identified_data set `", originalColName ,"` = 'issues:", colName, "' where number = 0 "); end if; -else +else if (tableName = 'lists' ) then set @z = CONCAT("update de_identified_data set `", colName ,"` = 'issues:", colName, "' where number = 0 "); else @@ -697,16 +697,16 @@ END IF; PREPARE stmt1 FROM @v; EXECUTE stmt1; - - + + SET @z = CONCAT("update de_identified_data set immunization_name = ( select title from list_options where list_id = 'immunizations' and option_id = ",@immunizationId," ) where sub_number = ",recordCount, " and number = ", recordNumber ); PREPARE stmt2 FROM @z; EXECUTE stmt2; - + END IF; set recordCount = recordCount - 1; @@ -733,7 +733,7 @@ end while; -END +END $ -- -------------------------------------------------------- -- Procedure to drop transaction tables @@ -752,7 +752,7 @@ DROP TABLE IF EXISTS temp_patient_id_table; DROP TABLE IF EXISTS temp_re_identification_code_table; DROP TABLE IF EXISTS temp_patient_record_id; DROP TABLE IF EXISTS param_filter_pid; - + DROP TABLE IF EXISTS param_filter_pid; END $ @@ -785,7 +785,7 @@ insert into de_identification_error_log values("re-identification",CURRENT_TIMES END IF; IF unknown_prepare_stmt = 1 THEN insert into de_identification_error_log values("re-identification",CURRENT_TIMESTAMP(), "Unkown prepare statement"); -END IF; +END IF; IF unknown_col_name = 1 THEN insert into de_identification_error_log values("re-identification",CURRENT_TIMESTAMP(), "Unkown column name"); END IF; @@ -826,7 +826,7 @@ FETCH metadata_cursor INTO colName; end WHILE; CLOSE metadata_cursor; -END +END $ -- -------------------------------------------------------- @@ -843,7 +843,7 @@ BEGIN #When this prodecure starts: #The temp_re_identification_code_table contains the list of re-identification codes to gather data for. #The re_identified_data table contains the table/column names to gather data for - #metadata_de_identification which tells whether the table/column needs to be de-identified or not. + #metadata_de_identification which tells whether the table/column needs to be de-identified or not. DECLARE colName VARCHAR(255) ; DECLARE tableName VARCHAR(255) ; DECLARE patientId INT; @@ -881,7 +881,7 @@ FETCH metadata_cursor INTO colName, tableName; EXECUTE stmt1; - set @z = CONCAT("update re_identified_data set `", colName ,"` = '", tableName, ":", colName, "' where number = 0 "); + set @z = CONCAT("update re_identified_data set `", colName ,"` = '", tableName, ":", colName, "' where number = 0 "); PREPARE stmt2 FROM @z; EXECUTE stmt2; @@ -1008,5 +1008,3 @@ insert into re_identification_status values (0); ------------------------------------------------------------ - - diff --git a/sql/ins_lang_def_nl.sql b/sql/ins_lang_def_nl.sql index b3247f948bc2..f13ae3659bdd 100644 --- a/sql/ins_lang_def_nl.sql +++ b/sql/ins_lang_def_nl.sql @@ -24,7 +24,7 @@ CREATE TABLE `lang_definitions` ( -- -- Dumping data for table `lang_definitions` -- --- WHERE: lang_id=5 +-- WHERE: lang_id=5 INSERT INTO `lang_definitions` VALUES (1926,2258,5,''); INSERT INTO `lang_definitions` VALUES (1925,1726,5,''); @@ -2712,4 +2712,3 @@ INSERT INTO `lang_definitions` VALUES (2905,2683,5,'Selecteer'); /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - diff --git a/sql/official_additional_users.sql b/sql/official_additional_users.sql index 51ec3293933b..09a49713bfcb 100644 --- a/sql/official_additional_users.sql +++ b/sql/official_additional_users.sql @@ -9,4 +9,4 @@ INSERT INTO `gacl_groups_aro_map`(`group_id`, `aro_id`) (SELECT `id` FROM `gacl_aro_groups` WHERE parent_id=10 AND value='admin') ,(SELECT `id` FROM `gacl_aro` WHERE `section_value` = 'users' AND `value` = 'oe-system') ); -UPDATE `gacl_aro_seq` SET `id` = (SELECT max(`id`)+1); \ No newline at end of file +UPDATE `gacl_aro_seq` SET `id` = (SELECT max(`id`)+1); diff --git a/src/Common/ORDataObject/ContactRelation.php b/src/Common/ORDataObject/ContactRelation.php index eb6f91b6bf5f..c1e4d4224273 100644 --- a/src/Common/ORDataObject/ContactRelation.php +++ b/src/Common/ORDataObject/ContactRelation.php @@ -318,7 +318,7 @@ public function set_start_date($start_date): self if (is_string($start_date)) { // Try DateFormatterUtils first $date = DateFormatterUtils::dateStringToDateTime($start_date); - + // If that fails, try native DateTime if ($date === false) { try { @@ -327,7 +327,7 @@ public function set_start_date($start_date): self throw new \InvalidArgumentException("Invalid start_date format: " . $start_date . " - " . $e->getMessage()); } } - + $this->start_date = $date; } elseif ($start_date instanceof DateTime) { $this->start_date = $start_date; @@ -347,7 +347,7 @@ public function set_end_date($end_date): self if (is_string($end_date)) { // Try DateFormatterUtils first $date = DateFormatterUtils::dateStringToDateTime($end_date); - + // If that fails, try native DateTime if ($date === false) { try { @@ -356,7 +356,7 @@ public function set_end_date($end_date): self throw new \InvalidArgumentException("Invalid end_date format: " . $end_date . " - " . $e->getMessage()); } } - + $this->end_date = $date; } elseif ($end_date instanceof DateTime) { $this->end_date = $end_date; diff --git a/src/Common/ORDataObject/Person.php b/src/Common/ORDataObject/Person.php index a28d3021fc88..7340730f5282 100644 --- a/src/Common/ORDataObject/Person.php +++ b/src/Common/ORDataObject/Person.php @@ -164,11 +164,11 @@ public function set_id($id): self /** * Get UUID - returns BINARY for database operations, STRING for API/display - * + * * CRITICAL FIX: This method must return the raw binary value so that * ORDataObject::persist() can save it correctly to the BINARY(16) column. * The conversion to string happens in get_uuid_string() or toArray(). - * + * * @return string|null Binary UUID (16 bytes) or null */ public function get_uuid(): ?string @@ -181,7 +181,7 @@ public function get_uuid(): ?string /** * Get UUID as human-readable string (36 characters with hyphens) * Use this for API responses, logging, and display purposes - * + * * @return string|null UUID string like "550e8400-e29b-41d4-a716-446655440000" */ public function get_uuid_string(): ?string @@ -191,7 +191,7 @@ public function get_uuid_string(): ?string /** * Set UUID - accepts either binary (16 bytes) or string (36 chars) - * + * * @param string|null $uuid Either binary (16 bytes) or string format * @return self */ @@ -210,7 +210,7 @@ public function set_uuid(?string $uuid): self error_log("Person::set_uuid() - Invalid UUID format: length=" . strlen($uuid)); $this->uuid = null; } - + $this->setIsObjectModified(true); return $this; } diff --git a/src/Core/Traits/SingletonTrait.php b/src/Core/Traits/SingletonTrait.php index 8f23ba0dcbec..2baac98634ed 100644 --- a/src/Core/Traits/SingletonTrait.php +++ b/src/Core/Traits/SingletonTrait.php @@ -53,4 +53,3 @@ protected static function createInstance(): static return new static(); // @phpstan-ignore-line new.static } } - diff --git a/src/Cqm/Qdm/AdverseEvent.php b/src/Cqm/Qdm/AdverseEvent.php index 3d0be7d4b54f..eba271827350 100644 --- a/src/Cqm/Qdm/AdverseEvent.php +++ b/src/Cqm/Qdm/AdverseEvent.php @@ -71,4 +71,3 @@ class AdverseEvent extends QDMBaseType public $_type = 'QDM::AdverseEvent'; } - diff --git a/src/Cqm/Qdm/AllergyIntolerance.php b/src/Cqm/Qdm/AllergyIntolerance.php index ac956aef7787..c1ed36edd4bd 100644 --- a/src/Cqm/Qdm/AllergyIntolerance.php +++ b/src/Cqm/Qdm/AllergyIntolerance.php @@ -66,4 +66,3 @@ class AllergyIntolerance extends QDMBaseType public $_type = 'QDM::AllergyIntolerance'; } - diff --git a/src/Cqm/Qdm/AssessmentOrder.php b/src/Cqm/Qdm/AssessmentOrder.php index 2651b9b8cf69..271c04603ff9 100644 --- a/src/Cqm/Qdm/AssessmentOrder.php +++ b/src/Cqm/Qdm/AssessmentOrder.php @@ -61,4 +61,3 @@ class AssessmentOrder extends QDMBaseType public $_type = 'QDM::AssessmentOrder'; } - diff --git a/src/Cqm/Qdm/AssessmentPerformed.php b/src/Cqm/Qdm/AssessmentPerformed.php index df6dfd3ca029..c257726f9f07 100644 --- a/src/Cqm/Qdm/AssessmentPerformed.php +++ b/src/Cqm/Qdm/AssessmentPerformed.php @@ -58,14 +58,14 @@ class AssessmentPerformed extends QDMBaseType * @property array $components */ public $components = [ - + ]; /** * @property array $relatedTo */ public $relatedTo = [ - + ]; /** @@ -100,4 +100,3 @@ class AssessmentPerformed extends QDMBaseType public $_type = 'QDM::AssessmentPerformed'; } - diff --git a/src/Cqm/Qdm/AssessmentRecommended.php b/src/Cqm/Qdm/AssessmentRecommended.php index a3e561df9cbb..9488992a4a26 100644 --- a/src/Cqm/Qdm/AssessmentRecommended.php +++ b/src/Cqm/Qdm/AssessmentRecommended.php @@ -61,4 +61,3 @@ class AssessmentRecommended extends QDMBaseType public $_type = 'QDM::AssessmentRecommended'; } - diff --git a/src/Cqm/Qdm/CareGoal.php b/src/Cqm/Qdm/CareGoal.php index 330e1658ea8c..d4268724d9bd 100644 --- a/src/Cqm/Qdm/CareGoal.php +++ b/src/Cqm/Qdm/CareGoal.php @@ -28,7 +28,7 @@ class CareGoal extends QDMBaseType * @property array $relatedTo */ public $relatedTo = [ - + ]; /** @@ -68,4 +68,3 @@ class CareGoal extends QDMBaseType public $_type = 'QDM::CareGoal'; } - diff --git a/src/Cqm/Qdm/CarePartner.php b/src/Cqm/Qdm/CarePartner.php index 67511fd6e052..4b0d5179f381 100644 --- a/src/Cqm/Qdm/CarePartner.php +++ b/src/Cqm/Qdm/CarePartner.php @@ -31,4 +31,3 @@ class CarePartner extends Entity public $_type = 'QDM::CarePartner'; } - diff --git a/src/Cqm/Qdm/CommunicationPerformed.php b/src/Cqm/Qdm/CommunicationPerformed.php index 39f372ca7a47..776eb8beea79 100644 --- a/src/Cqm/Qdm/CommunicationPerformed.php +++ b/src/Cqm/Qdm/CommunicationPerformed.php @@ -43,7 +43,7 @@ class CommunicationPerformed extends QDMBaseType * @property array $relatedTo */ public $relatedTo = [ - + ]; /** @@ -88,4 +88,3 @@ class CommunicationPerformed extends QDMBaseType public $_type = 'QDM::CommunicationPerformed'; } - diff --git a/src/Cqm/Qdm/Component.php b/src/Cqm/Qdm/Component.php index 7748c8319507..69393142c982 100644 --- a/src/Cqm/Qdm/Component.php +++ b/src/Cqm/Qdm/Component.php @@ -31,4 +31,3 @@ class Component extends \OpenEMR\Cqm\Qdm\BaseTypes\Any public $_type = 'QDM::Component'; } - diff --git a/src/Cqm/Qdm/DeviceApplied.php b/src/Cqm/Qdm/DeviceApplied.php index ec3de3da1128..f24f7258b1fc 100644 --- a/src/Cqm/Qdm/DeviceApplied.php +++ b/src/Cqm/Qdm/DeviceApplied.php @@ -76,4 +76,3 @@ class DeviceApplied extends QDMBaseType public $_type = 'QDM::DeviceApplied'; } - diff --git a/src/Cqm/Qdm/DeviceOrder.php b/src/Cqm/Qdm/DeviceOrder.php index b873a684f4c1..8ec879eefd53 100644 --- a/src/Cqm/Qdm/DeviceOrder.php +++ b/src/Cqm/Qdm/DeviceOrder.php @@ -61,4 +61,3 @@ class DeviceOrder extends QDMBaseType public $_type = 'QDM::DeviceOrder'; } - diff --git a/src/Cqm/Qdm/DeviceRecommended.php b/src/Cqm/Qdm/DeviceRecommended.php index 34a011db16f9..21a1bc6ed20d 100644 --- a/src/Cqm/Qdm/DeviceRecommended.php +++ b/src/Cqm/Qdm/DeviceRecommended.php @@ -61,4 +61,3 @@ class DeviceRecommended extends QDMBaseType public $_type = 'QDM::DeviceRecommended'; } - diff --git a/src/Cqm/Qdm/Diagnosis.php b/src/Cqm/Qdm/Diagnosis.php index 985449bc4fc6..2f7f6db99b76 100644 --- a/src/Cqm/Qdm/Diagnosis.php +++ b/src/Cqm/Qdm/Diagnosis.php @@ -66,4 +66,3 @@ class Diagnosis extends QDMBaseType public $_type = 'QDM::Diagnosis'; } - diff --git a/src/Cqm/Qdm/DiagnosisComponent.php b/src/Cqm/Qdm/DiagnosisComponent.php index 17e75e836c3b..86b5c4dd3a9e 100644 --- a/src/Cqm/Qdm/DiagnosisComponent.php +++ b/src/Cqm/Qdm/DiagnosisComponent.php @@ -36,4 +36,3 @@ class DiagnosisComponent extends \OpenEMR\Cqm\Qdm\BaseTypes\Any public $_type = 'QDM::DiagnosisComponent'; } - diff --git a/src/Cqm/Qdm/DiagnosticStudyOrder.php b/src/Cqm/Qdm/DiagnosticStudyOrder.php index 320bebb74eb3..67d9e781c3c7 100644 --- a/src/Cqm/Qdm/DiagnosticStudyOrder.php +++ b/src/Cqm/Qdm/DiagnosticStudyOrder.php @@ -61,4 +61,3 @@ class DiagnosticStudyOrder extends QDMBaseType public $_type = 'QDM::DiagnosticStudyOrder'; } - diff --git a/src/Cqm/Qdm/DiagnosticStudyPerformed.php b/src/Cqm/Qdm/DiagnosticStudyPerformed.php index b856cbfb5b9d..c3e3005494c5 100644 --- a/src/Cqm/Qdm/DiagnosticStudyPerformed.php +++ b/src/Cqm/Qdm/DiagnosticStudyPerformed.php @@ -73,7 +73,7 @@ class DiagnosticStudyPerformed extends QDMBaseType * @property array $components */ public $components = [ - + ]; /** @@ -85,7 +85,7 @@ class DiagnosticStudyPerformed extends QDMBaseType * @property array $relatedTo */ public $relatedTo = [ - + ]; /** @@ -115,4 +115,3 @@ class DiagnosticStudyPerformed extends QDMBaseType public $_type = 'QDM::DiagnosticStudyPerformed'; } - diff --git a/src/Cqm/Qdm/DiagnosticStudyRecommended.php b/src/Cqm/Qdm/DiagnosticStudyRecommended.php index 29c87c13e299..60aa0b357d50 100644 --- a/src/Cqm/Qdm/DiagnosticStudyRecommended.php +++ b/src/Cqm/Qdm/DiagnosticStudyRecommended.php @@ -56,4 +56,3 @@ class DiagnosticStudyRecommended extends QDMBaseType public $_type = 'QDM::DiagnosticStudyRecommended'; } - diff --git a/src/Cqm/Qdm/EncounterOrder.php b/src/Cqm/Qdm/EncounterOrder.php index 801d2ba2c2ab..591b3eec2413 100644 --- a/src/Cqm/Qdm/EncounterOrder.php +++ b/src/Cqm/Qdm/EncounterOrder.php @@ -71,4 +71,3 @@ class EncounterOrder extends QDMBaseType public $_type = 'QDM::EncounterOrder'; } - diff --git a/src/Cqm/Qdm/EncounterPerformed.php b/src/Cqm/Qdm/EncounterPerformed.php index 5d1b1a7cdae8..651a4b4315b5 100644 --- a/src/Cqm/Qdm/EncounterPerformed.php +++ b/src/Cqm/Qdm/EncounterPerformed.php @@ -43,14 +43,14 @@ class EncounterPerformed extends QDMBaseType * @property array $facilityLocations */ public $facilityLocations = [ - + ]; /** * @property array $diagnoses */ public $diagnoses = [ - + ]; /** @@ -72,7 +72,7 @@ class EncounterPerformed extends QDMBaseType * @property array $relatedTo */ public $relatedTo = [ - + ]; /** @@ -102,4 +102,3 @@ class EncounterPerformed extends QDMBaseType public $_type = 'QDM::EncounterPerformed'; } - diff --git a/src/Cqm/Qdm/EncounterRecommended.php b/src/Cqm/Qdm/EncounterRecommended.php index 32140fb495d2..aa904073b212 100644 --- a/src/Cqm/Qdm/EncounterRecommended.php +++ b/src/Cqm/Qdm/EncounterRecommended.php @@ -66,4 +66,3 @@ class EncounterRecommended extends QDMBaseType public $_type = 'QDM::EncounterRecommended'; } - diff --git a/src/Cqm/Qdm/Entity.php b/src/Cqm/Qdm/Entity.php index 10867cbe5a88..d0d037f5ed72 100644 --- a/src/Cqm/Qdm/Entity.php +++ b/src/Cqm/Qdm/Entity.php @@ -31,4 +31,3 @@ class Entity extends \OpenEMR\Cqm\Qdm\BaseTypes\Any public $_type = 'QDM::Entity'; } - diff --git a/src/Cqm/Qdm/FacilityLocation.php b/src/Cqm/Qdm/FacilityLocation.php index 722accb8034d..1d2cc5a0b966 100644 --- a/src/Cqm/Qdm/FacilityLocation.php +++ b/src/Cqm/Qdm/FacilityLocation.php @@ -31,4 +31,3 @@ class FacilityLocation extends \OpenEMR\Cqm\Qdm\BaseTypes\Any public $_type = 'QDM::FacilityLocation'; } - diff --git a/src/Cqm/Qdm/FamilyHistory.php b/src/Cqm/Qdm/FamilyHistory.php index 3152778c5127..b811185312d5 100644 --- a/src/Cqm/Qdm/FamilyHistory.php +++ b/src/Cqm/Qdm/FamilyHistory.php @@ -56,4 +56,3 @@ class FamilyHistory extends QDMBaseType public $_type = 'QDM::FamilyHistory'; } - diff --git a/src/Cqm/Qdm/Identifier.php b/src/Cqm/Qdm/Identifier.php index e74a48cef802..335c8e1c2c38 100644 --- a/src/Cqm/Qdm/Identifier.php +++ b/src/Cqm/Qdm/Identifier.php @@ -31,4 +31,3 @@ class Identifier extends \OpenEMR\Cqm\Qdm\BaseTypes\Any public $_type = 'QDM::Identifier'; } - diff --git a/src/Cqm/Qdm/ImmunizationAdministered.php b/src/Cqm/Qdm/ImmunizationAdministered.php index 79232139472e..f665e2b4bd59 100644 --- a/src/Cqm/Qdm/ImmunizationAdministered.php +++ b/src/Cqm/Qdm/ImmunizationAdministered.php @@ -76,4 +76,3 @@ class ImmunizationAdministered extends QDMBaseType public $_type = 'QDM::ImmunizationAdministered'; } - diff --git a/src/Cqm/Qdm/ImmunizationOrder.php b/src/Cqm/Qdm/ImmunizationOrder.php index 34cf86c43e72..fa57ea8b3c99 100644 --- a/src/Cqm/Qdm/ImmunizationOrder.php +++ b/src/Cqm/Qdm/ImmunizationOrder.php @@ -81,4 +81,3 @@ class ImmunizationOrder extends QDMBaseType public $_type = 'QDM::ImmunizationOrder'; } - diff --git a/src/Cqm/Qdm/InterventionOrder.php b/src/Cqm/Qdm/InterventionOrder.php index de918e887a3b..534fa680c43a 100644 --- a/src/Cqm/Qdm/InterventionOrder.php +++ b/src/Cqm/Qdm/InterventionOrder.php @@ -61,4 +61,3 @@ class InterventionOrder extends QDMBaseType public $_type = 'QDM::InterventionOrder'; } - diff --git a/src/Cqm/Qdm/InterventionPerformed.php b/src/Cqm/Qdm/InterventionPerformed.php index 637ee4da3f42..de68ff79f8ca 100644 --- a/src/Cqm/Qdm/InterventionPerformed.php +++ b/src/Cqm/Qdm/InterventionPerformed.php @@ -58,7 +58,7 @@ class InterventionPerformed extends QDMBaseType * @property array $relatedTo */ public $relatedTo = [ - + ]; /** @@ -88,4 +88,3 @@ class InterventionPerformed extends QDMBaseType public $_type = 'QDM::InterventionPerformed'; } - diff --git a/src/Cqm/Qdm/InterventionRecommended.php b/src/Cqm/Qdm/InterventionRecommended.php index c5dcc58e533d..d713a3f71f9b 100644 --- a/src/Cqm/Qdm/InterventionRecommended.php +++ b/src/Cqm/Qdm/InterventionRecommended.php @@ -61,4 +61,3 @@ class InterventionRecommended extends QDMBaseType public $_type = 'QDM::InterventionRecommended'; } - diff --git a/src/Cqm/Qdm/LaboratoryTestOrder.php b/src/Cqm/Qdm/LaboratoryTestOrder.php index 7e0f0a7368b5..a24abeeccac9 100644 --- a/src/Cqm/Qdm/LaboratoryTestOrder.php +++ b/src/Cqm/Qdm/LaboratoryTestOrder.php @@ -61,4 +61,3 @@ class LaboratoryTestOrder extends QDMBaseType public $_type = 'QDM::LaboratoryTestOrder'; } - diff --git a/src/Cqm/Qdm/LaboratoryTestPerformed.php b/src/Cqm/Qdm/LaboratoryTestPerformed.php index 13e879023efb..7d2cd5190d0c 100644 --- a/src/Cqm/Qdm/LaboratoryTestPerformed.php +++ b/src/Cqm/Qdm/LaboratoryTestPerformed.php @@ -73,7 +73,7 @@ class LaboratoryTestPerformed extends QDMBaseType * @property array $components */ public $components = [ - + ]; /** @@ -85,7 +85,7 @@ class LaboratoryTestPerformed extends QDMBaseType * @property array $relatedTo */ public $relatedTo = [ - + ]; /** @@ -115,4 +115,3 @@ class LaboratoryTestPerformed extends QDMBaseType public $_type = 'QDM::LaboratoryTestPerformed'; } - diff --git a/src/Cqm/Qdm/LaboratoryTestRecommended.php b/src/Cqm/Qdm/LaboratoryTestRecommended.php index 121067cd88c9..37f018f5d173 100644 --- a/src/Cqm/Qdm/LaboratoryTestRecommended.php +++ b/src/Cqm/Qdm/LaboratoryTestRecommended.php @@ -61,4 +61,3 @@ class LaboratoryTestRecommended extends QDMBaseType public $_type = 'QDM::LaboratoryTestRecommended'; } - diff --git a/src/Cqm/Qdm/Location.php b/src/Cqm/Qdm/Location.php index cdc7bf78bf98..da18cddcb8b2 100644 --- a/src/Cqm/Qdm/Location.php +++ b/src/Cqm/Qdm/Location.php @@ -31,4 +31,3 @@ class Location extends Entity public $_type = 'QDM::Location'; } - diff --git a/src/Cqm/Qdm/MedicationActive.php b/src/Cqm/Qdm/MedicationActive.php index c314f8e1b833..db172c0a129c 100644 --- a/src/Cqm/Qdm/MedicationActive.php +++ b/src/Cqm/Qdm/MedicationActive.php @@ -71,4 +71,3 @@ class MedicationActive extends QDMBaseType public $_type = 'QDM::MedicationActive'; } - diff --git a/src/Cqm/Qdm/MedicationAdministered.php b/src/Cqm/Qdm/MedicationAdministered.php index be6889d760d4..f4c72041e409 100644 --- a/src/Cqm/Qdm/MedicationAdministered.php +++ b/src/Cqm/Qdm/MedicationAdministered.php @@ -86,4 +86,3 @@ class MedicationAdministered extends QDMBaseType public $_type = 'QDM::MedicationAdministered'; } - diff --git a/src/Cqm/Qdm/MedicationDischarge.php b/src/Cqm/Qdm/MedicationDischarge.php index 2094deea2fc7..c526fb2500ef 100644 --- a/src/Cqm/Qdm/MedicationDischarge.php +++ b/src/Cqm/Qdm/MedicationDischarge.php @@ -91,4 +91,3 @@ class MedicationDischarge extends QDMBaseType public $_type = 'QDM::MedicationDischarge'; } - diff --git a/src/Cqm/Qdm/MedicationDispensed.php b/src/Cqm/Qdm/MedicationDispensed.php index e699a0348add..3d5bfb151cbc 100644 --- a/src/Cqm/Qdm/MedicationDispensed.php +++ b/src/Cqm/Qdm/MedicationDispensed.php @@ -78,7 +78,7 @@ class MedicationDispensed extends QDMBaseType * @property array $relatedTo */ public $relatedTo = [ - + ]; /** @@ -108,4 +108,3 @@ class MedicationDispensed extends QDMBaseType public $_type = 'QDM::MedicationDispensed'; } - diff --git a/src/Cqm/Qdm/MedicationOrder.php b/src/Cqm/Qdm/MedicationOrder.php index 8fbffefb659a..57ded846a5b5 100644 --- a/src/Cqm/Qdm/MedicationOrder.php +++ b/src/Cqm/Qdm/MedicationOrder.php @@ -78,7 +78,7 @@ class MedicationOrder extends QDMBaseType * @property array $relatedTo */ public $relatedTo = [ - + ]; /** @@ -108,4 +108,3 @@ class MedicationOrder extends QDMBaseType public $_type = 'QDM::MedicationOrder'; } - diff --git a/src/Cqm/Qdm/NegativeAssessmentOrder.php b/src/Cqm/Qdm/NegativeAssessmentOrder.php index fdf213b8d7b0..747d90adef8b 100644 --- a/src/Cqm/Qdm/NegativeAssessmentOrder.php +++ b/src/Cqm/Qdm/NegativeAssessmentOrder.php @@ -26,4 +26,3 @@ class NegativeAssessmentOrder extends AssessmentOrder public $_type = 'QDM::NegativeAssessmentOrder'; } - diff --git a/src/Cqm/Qdm/NegativeAssessmentPerformed.php b/src/Cqm/Qdm/NegativeAssessmentPerformed.php index e5dd2c4c9e89..28c3bb7c6a88 100644 --- a/src/Cqm/Qdm/NegativeAssessmentPerformed.php +++ b/src/Cqm/Qdm/NegativeAssessmentPerformed.php @@ -26,4 +26,3 @@ class NegativeAssessmentPerformed extends AssessmentPerformed public $_type = 'QDM::NegativeAssessmentPerformed'; } - diff --git a/src/Cqm/Qdm/NegativeAssessmentRecommended.php b/src/Cqm/Qdm/NegativeAssessmentRecommended.php index 74d35d192c2a..2d12a22ed071 100644 --- a/src/Cqm/Qdm/NegativeAssessmentRecommended.php +++ b/src/Cqm/Qdm/NegativeAssessmentRecommended.php @@ -26,4 +26,3 @@ class NegativeAssessmentRecommended extends AssessmentRecommended public $_type = 'QDM::NegativeAssessmentRecommended'; } - diff --git a/src/Cqm/Qdm/NegativeCommunicationPerformed.php b/src/Cqm/Qdm/NegativeCommunicationPerformed.php index c248dda48bbb..18b198aecc5a 100644 --- a/src/Cqm/Qdm/NegativeCommunicationPerformed.php +++ b/src/Cqm/Qdm/NegativeCommunicationPerformed.php @@ -26,4 +26,3 @@ class NegativeCommunicationPerformed extends CommunicationPerformed public $_type = 'QDM::NegativeCommunicationPerformed'; } - diff --git a/src/Cqm/Qdm/NegativeDeviceApplied.php b/src/Cqm/Qdm/NegativeDeviceApplied.php index e14251c1c485..7fdf425de74c 100644 --- a/src/Cqm/Qdm/NegativeDeviceApplied.php +++ b/src/Cqm/Qdm/NegativeDeviceApplied.php @@ -26,4 +26,3 @@ class NegativeDeviceApplied extends DeviceApplied public $_type = 'QDM::NegativeDeviceApplied'; } - diff --git a/src/Cqm/Qdm/NegativeDeviceOrder.php b/src/Cqm/Qdm/NegativeDeviceOrder.php index 816eaf19a34a..50ba56ea904d 100644 --- a/src/Cqm/Qdm/NegativeDeviceOrder.php +++ b/src/Cqm/Qdm/NegativeDeviceOrder.php @@ -26,4 +26,3 @@ class NegativeDeviceOrder extends DeviceOrder public $_type = 'QDM::NegativeDeviceOrder'; } - diff --git a/src/Cqm/Qdm/NegativeDeviceRecommended.php b/src/Cqm/Qdm/NegativeDeviceRecommended.php index 9b1167bac8af..967c1137b598 100644 --- a/src/Cqm/Qdm/NegativeDeviceRecommended.php +++ b/src/Cqm/Qdm/NegativeDeviceRecommended.php @@ -26,4 +26,3 @@ class NegativeDeviceRecommended extends DeviceRecommended public $_type = 'QDM::NegativeDeviceRecommended'; } - diff --git a/src/Cqm/Qdm/NegativeDiagnosticStudyOrder.php b/src/Cqm/Qdm/NegativeDiagnosticStudyOrder.php index 736775cfb354..61f70f89e84a 100644 --- a/src/Cqm/Qdm/NegativeDiagnosticStudyOrder.php +++ b/src/Cqm/Qdm/NegativeDiagnosticStudyOrder.php @@ -26,4 +26,3 @@ class NegativeDiagnosticStudyOrder extends DiagnosticStudyOrder public $_type = 'QDM::NegativeDiagnosticStudyOrder'; } - diff --git a/src/Cqm/Qdm/NegativeDiagnosticStudyPerformed.php b/src/Cqm/Qdm/NegativeDiagnosticStudyPerformed.php index 090adb3e6d98..4e950bf57395 100644 --- a/src/Cqm/Qdm/NegativeDiagnosticStudyPerformed.php +++ b/src/Cqm/Qdm/NegativeDiagnosticStudyPerformed.php @@ -26,4 +26,3 @@ class NegativeDiagnosticStudyPerformed extends DiagnosticStudyPerformed public $_type = 'QDM::NegativeDiagnosticStudyPerformed'; } - diff --git a/src/Cqm/Qdm/NegativeDiagnosticStudyRecommended.php b/src/Cqm/Qdm/NegativeDiagnosticStudyRecommended.php index 2deef1c953ae..2790fca719f2 100644 --- a/src/Cqm/Qdm/NegativeDiagnosticStudyRecommended.php +++ b/src/Cqm/Qdm/NegativeDiagnosticStudyRecommended.php @@ -26,4 +26,3 @@ class NegativeDiagnosticStudyRecommended extends DiagnosticStudyRecommended public $_type = 'QDM::NegativeDiagnosticStudyRecommended'; } - diff --git a/src/Cqm/Qdm/NegativeEncounterOrder.php b/src/Cqm/Qdm/NegativeEncounterOrder.php index 9aae0ff546c7..de9e0551a71d 100644 --- a/src/Cqm/Qdm/NegativeEncounterOrder.php +++ b/src/Cqm/Qdm/NegativeEncounterOrder.php @@ -26,4 +26,3 @@ class NegativeEncounterOrder extends EncounterOrder public $_type = 'QDM::NegativeEncounterOrder'; } - diff --git a/src/Cqm/Qdm/NegativeEncounterPerformed.php b/src/Cqm/Qdm/NegativeEncounterPerformed.php index 622129641758..83b8fa6fd91b 100644 --- a/src/Cqm/Qdm/NegativeEncounterPerformed.php +++ b/src/Cqm/Qdm/NegativeEncounterPerformed.php @@ -26,4 +26,3 @@ class NegativeEncounterPerformed extends EncounterPerformed public $_type = 'QDM::NegativeEncounterPerformed'; } - diff --git a/src/Cqm/Qdm/NegativeEncounterRecommended.php b/src/Cqm/Qdm/NegativeEncounterRecommended.php index 1b85380e3cae..fc778575b8dd 100644 --- a/src/Cqm/Qdm/NegativeEncounterRecommended.php +++ b/src/Cqm/Qdm/NegativeEncounterRecommended.php @@ -26,4 +26,3 @@ class NegativeEncounterRecommended extends EncounterRecommended public $_type = 'QDM::NegativeEncounterRecommended'; } - diff --git a/src/Cqm/Qdm/NegativeImmunizationAdministered.php b/src/Cqm/Qdm/NegativeImmunizationAdministered.php index 9d43cb62b315..475329500df6 100644 --- a/src/Cqm/Qdm/NegativeImmunizationAdministered.php +++ b/src/Cqm/Qdm/NegativeImmunizationAdministered.php @@ -26,4 +26,3 @@ class NegativeImmunizationAdministered extends ImmunizationAdministered public $_type = 'QDM::NegativeImmunizationAdministered'; } - diff --git a/src/Cqm/Qdm/NegativeImmunizationOrder.php b/src/Cqm/Qdm/NegativeImmunizationOrder.php index 104455c898eb..54c19e24588e 100644 --- a/src/Cqm/Qdm/NegativeImmunizationOrder.php +++ b/src/Cqm/Qdm/NegativeImmunizationOrder.php @@ -26,4 +26,3 @@ class NegativeImmunizationOrder extends ImmunizationOrder public $_type = 'QDM::NegativeImmunizationOrder'; } - diff --git a/src/Cqm/Qdm/NegativeInterventionOrder.php b/src/Cqm/Qdm/NegativeInterventionOrder.php index 05d4345a5ef9..00ea9465f8a1 100644 --- a/src/Cqm/Qdm/NegativeInterventionOrder.php +++ b/src/Cqm/Qdm/NegativeInterventionOrder.php @@ -26,4 +26,3 @@ class NegativeInterventionOrder extends InterventionOrder public $_type = 'QDM::NegativeInterventionOrder'; } - diff --git a/src/Cqm/Qdm/NegativeInterventionPerformed.php b/src/Cqm/Qdm/NegativeInterventionPerformed.php index 91e7b88e887e..13831d3aef17 100644 --- a/src/Cqm/Qdm/NegativeInterventionPerformed.php +++ b/src/Cqm/Qdm/NegativeInterventionPerformed.php @@ -26,4 +26,3 @@ class NegativeInterventionPerformed extends InterventionPerformed public $_type = 'QDM::NegativeInterventionPerformed'; } - diff --git a/src/Cqm/Qdm/NegativeInterventionRecommended.php b/src/Cqm/Qdm/NegativeInterventionRecommended.php index 9fa4be612539..5d84173ccd81 100644 --- a/src/Cqm/Qdm/NegativeInterventionRecommended.php +++ b/src/Cqm/Qdm/NegativeInterventionRecommended.php @@ -26,4 +26,3 @@ class NegativeInterventionRecommended extends InterventionRecommended public $_type = 'QDM::NegativeInterventionRecommended'; } - diff --git a/src/Cqm/Qdm/NegativeLaboratoryTestOrder.php b/src/Cqm/Qdm/NegativeLaboratoryTestOrder.php index 5a6cd5d5b7af..cb91db0b708a 100644 --- a/src/Cqm/Qdm/NegativeLaboratoryTestOrder.php +++ b/src/Cqm/Qdm/NegativeLaboratoryTestOrder.php @@ -26,4 +26,3 @@ class NegativeLaboratoryTestOrder extends LaboratoryTestOrder public $_type = 'QDM::NegativeLaboratoryTestOrder'; } - diff --git a/src/Cqm/Qdm/NegativeLaboratoryTestPerformed.php b/src/Cqm/Qdm/NegativeLaboratoryTestPerformed.php index dd2281d2dd71..22680dd0dfff 100644 --- a/src/Cqm/Qdm/NegativeLaboratoryTestPerformed.php +++ b/src/Cqm/Qdm/NegativeLaboratoryTestPerformed.php @@ -26,4 +26,3 @@ class NegativeLaboratoryTestPerformed extends LaboratoryTestPerformed public $_type = 'QDM::NegativeLaboratoryTestPerformed'; } - diff --git a/src/Cqm/Qdm/NegativeLaboratoryTestRecommended.php b/src/Cqm/Qdm/NegativeLaboratoryTestRecommended.php index 58fac9020a1e..e5828b200378 100644 --- a/src/Cqm/Qdm/NegativeLaboratoryTestRecommended.php +++ b/src/Cqm/Qdm/NegativeLaboratoryTestRecommended.php @@ -26,4 +26,3 @@ class NegativeLaboratoryTestRecommended extends LaboratoryTestRecommended public $_type = 'QDM::NegativeLaboratoryTestRecommended'; } - diff --git a/src/Cqm/Qdm/NegativeMedicationAdministered.php b/src/Cqm/Qdm/NegativeMedicationAdministered.php index 9ea531c8d1e6..68e286d25489 100644 --- a/src/Cqm/Qdm/NegativeMedicationAdministered.php +++ b/src/Cqm/Qdm/NegativeMedicationAdministered.php @@ -26,4 +26,3 @@ class NegativeMedicationAdministered extends MedicationAdministered public $_type = 'QDM::NegativeMedicationAdministered'; } - diff --git a/src/Cqm/Qdm/NegativeMedicationDischarge.php b/src/Cqm/Qdm/NegativeMedicationDischarge.php index 62eb81c78f0d..2a007c00e79c 100644 --- a/src/Cqm/Qdm/NegativeMedicationDischarge.php +++ b/src/Cqm/Qdm/NegativeMedicationDischarge.php @@ -26,4 +26,3 @@ class NegativeMedicationDischarge extends MedicationDischarge public $_type = 'QDM::NegativeMedicationDischarge'; } - diff --git a/src/Cqm/Qdm/NegativeMedicationDispensed.php b/src/Cqm/Qdm/NegativeMedicationDispensed.php index a8edc17ec804..804bb352183b 100644 --- a/src/Cqm/Qdm/NegativeMedicationDispensed.php +++ b/src/Cqm/Qdm/NegativeMedicationDispensed.php @@ -26,4 +26,3 @@ class NegativeMedicationDispensed extends MedicationDispensed public $_type = 'QDM::NegativeMedicationDispensed'; } - diff --git a/src/Cqm/Qdm/NegativeMedicationOrder.php b/src/Cqm/Qdm/NegativeMedicationOrder.php index 165fb953d9c4..58907526f563 100644 --- a/src/Cqm/Qdm/NegativeMedicationOrder.php +++ b/src/Cqm/Qdm/NegativeMedicationOrder.php @@ -26,4 +26,3 @@ class NegativeMedicationOrder extends MedicationOrder public $_type = 'QDM::NegativeMedicationOrder'; } - diff --git a/src/Cqm/Qdm/NegativePhysicalExamOrder.php b/src/Cqm/Qdm/NegativePhysicalExamOrder.php index 3a3e75212af9..fe7c632f0f94 100644 --- a/src/Cqm/Qdm/NegativePhysicalExamOrder.php +++ b/src/Cqm/Qdm/NegativePhysicalExamOrder.php @@ -26,4 +26,3 @@ class NegativePhysicalExamOrder extends PhysicalExamOrder public $_type = 'QDM::NegativePhysicalExamOrder'; } - diff --git a/src/Cqm/Qdm/NegativePhysicalExamPerformed.php b/src/Cqm/Qdm/NegativePhysicalExamPerformed.php index fdfe6579baf3..954b55063add 100644 --- a/src/Cqm/Qdm/NegativePhysicalExamPerformed.php +++ b/src/Cqm/Qdm/NegativePhysicalExamPerformed.php @@ -26,4 +26,3 @@ class NegativePhysicalExamPerformed extends PhysicalExamPerformed public $_type = 'QDM::NegativePhysicalExamPerformed'; } - diff --git a/src/Cqm/Qdm/NegativePhysicalExamRecommended.php b/src/Cqm/Qdm/NegativePhysicalExamRecommended.php index 21bbcb953688..469f7235b920 100644 --- a/src/Cqm/Qdm/NegativePhysicalExamRecommended.php +++ b/src/Cqm/Qdm/NegativePhysicalExamRecommended.php @@ -26,4 +26,3 @@ class NegativePhysicalExamRecommended extends PhysicalExamRecommended public $_type = 'QDM::NegativePhysicalExamRecommended'; } - diff --git a/src/Cqm/Qdm/NegativeProcedureOrder.php b/src/Cqm/Qdm/NegativeProcedureOrder.php index 5237781d4cbe..2d11fe2c7ce7 100644 --- a/src/Cqm/Qdm/NegativeProcedureOrder.php +++ b/src/Cqm/Qdm/NegativeProcedureOrder.php @@ -26,4 +26,3 @@ class NegativeProcedureOrder extends ProcedureOrder public $_type = 'QDM::NegativeProcedureOrder'; } - diff --git a/src/Cqm/Qdm/NegativeProcedurePerformed.php b/src/Cqm/Qdm/NegativeProcedurePerformed.php index dc80fad53aed..8fe6b28bd20b 100644 --- a/src/Cqm/Qdm/NegativeProcedurePerformed.php +++ b/src/Cqm/Qdm/NegativeProcedurePerformed.php @@ -26,4 +26,3 @@ class NegativeProcedurePerformed extends ProcedurePerformed public $_type = 'QDM::NegativeProcedurePerformed'; } - diff --git a/src/Cqm/Qdm/NegativeProcedureRecommended.php b/src/Cqm/Qdm/NegativeProcedureRecommended.php index 7613f48f6964..80fd74b5e90f 100644 --- a/src/Cqm/Qdm/NegativeProcedureRecommended.php +++ b/src/Cqm/Qdm/NegativeProcedureRecommended.php @@ -26,4 +26,3 @@ class NegativeProcedureRecommended extends ProcedureRecommended public $_type = 'QDM::NegativeProcedureRecommended'; } - diff --git a/src/Cqm/Qdm/NegativeSubstanceAdministered.php b/src/Cqm/Qdm/NegativeSubstanceAdministered.php index 46ea9f328135..ad2e6473226c 100644 --- a/src/Cqm/Qdm/NegativeSubstanceAdministered.php +++ b/src/Cqm/Qdm/NegativeSubstanceAdministered.php @@ -26,4 +26,3 @@ class NegativeSubstanceAdministered extends SubstanceAdministered public $_type = 'QDM::NegativeSubstanceAdministered'; } - diff --git a/src/Cqm/Qdm/NegativeSubstanceOrder.php b/src/Cqm/Qdm/NegativeSubstanceOrder.php index 7f24146c3fe7..d3924131bfbe 100644 --- a/src/Cqm/Qdm/NegativeSubstanceOrder.php +++ b/src/Cqm/Qdm/NegativeSubstanceOrder.php @@ -26,4 +26,3 @@ class NegativeSubstanceOrder extends SubstanceOrder public $_type = 'QDM::NegativeSubstanceOrder'; } - diff --git a/src/Cqm/Qdm/NegativeSubstanceRecommended.php b/src/Cqm/Qdm/NegativeSubstanceRecommended.php index 2f3be3e812a6..eaac12a8d52a 100644 --- a/src/Cqm/Qdm/NegativeSubstanceRecommended.php +++ b/src/Cqm/Qdm/NegativeSubstanceRecommended.php @@ -26,4 +26,3 @@ class NegativeSubstanceRecommended extends SubstanceRecommended public $_type = 'QDM::NegativeSubstanceRecommended'; } - diff --git a/src/Cqm/Qdm/Organization.php b/src/Cqm/Qdm/Organization.php index 1ec8430dad2f..fa4ea0ba1dc2 100644 --- a/src/Cqm/Qdm/Organization.php +++ b/src/Cqm/Qdm/Organization.php @@ -31,4 +31,3 @@ class Organization extends Entity public $_type = 'QDM::Organization'; } - diff --git a/src/Cqm/Qdm/Participation.php b/src/Cqm/Qdm/Participation.php index 53a778b5e4af..369f2436b5d5 100644 --- a/src/Cqm/Qdm/Participation.php +++ b/src/Cqm/Qdm/Participation.php @@ -46,4 +46,3 @@ class Participation extends QDMBaseType public $_type = 'QDM::Participation'; } - diff --git a/src/Cqm/Qdm/Patient.php b/src/Cqm/Qdm/Patient.php index 40ecd8bb4374..eac1129f3a6d 100644 --- a/src/Cqm/Qdm/Patient.php +++ b/src/Cqm/Qdm/Patient.php @@ -28,4 +28,3 @@ class Patient extends \OpenEMR\Cqm\Qdm\BaseTypes\Any public $_type = 'QDM::Patient'; } - diff --git a/src/Cqm/Qdm/PatientCareExperience.php b/src/Cqm/Qdm/PatientCareExperience.php index 54135e623bf4..e193bcdf71f4 100644 --- a/src/Cqm/Qdm/PatientCareExperience.php +++ b/src/Cqm/Qdm/PatientCareExperience.php @@ -51,4 +51,3 @@ class PatientCareExperience extends QDMBaseType public $_type = 'QDM::PatientCareExperience'; } - diff --git a/src/Cqm/Qdm/PatientCharacteristic.php b/src/Cqm/Qdm/PatientCharacteristic.php index 00e37b5800e4..c84789d49a7a 100644 --- a/src/Cqm/Qdm/PatientCharacteristic.php +++ b/src/Cqm/Qdm/PatientCharacteristic.php @@ -46,4 +46,3 @@ class PatientCharacteristic extends QDMBaseType public $_type = 'QDM::PatientCharacteristic'; } - diff --git a/src/Cqm/Qdm/PatientCharacteristicBirthdate.php b/src/Cqm/Qdm/PatientCharacteristicBirthdate.php index e8b4e73820c3..decffabcb11d 100644 --- a/src/Cqm/Qdm/PatientCharacteristicBirthdate.php +++ b/src/Cqm/Qdm/PatientCharacteristicBirthdate.php @@ -46,4 +46,3 @@ class PatientCharacteristicBirthdate extends QDMBaseType public $_type = 'QDM::PatientCharacteristicBirthdate'; } - diff --git a/src/Cqm/Qdm/PatientCharacteristicClinicalTrialParticipant.php b/src/Cqm/Qdm/PatientCharacteristicClinicalTrialParticipant.php index a44fab201651..ce19f69407a4 100644 --- a/src/Cqm/Qdm/PatientCharacteristicClinicalTrialParticipant.php +++ b/src/Cqm/Qdm/PatientCharacteristicClinicalTrialParticipant.php @@ -51,4 +51,3 @@ class PatientCharacteristicClinicalTrialParticipant extends QDMBaseType public $_type = 'QDM::PatientCharacteristicClinicalTrialParticipant'; } - diff --git a/src/Cqm/Qdm/PatientCharacteristicEthnicity.php b/src/Cqm/Qdm/PatientCharacteristicEthnicity.php index dfc9b410983f..4172c1524da5 100644 --- a/src/Cqm/Qdm/PatientCharacteristicEthnicity.php +++ b/src/Cqm/Qdm/PatientCharacteristicEthnicity.php @@ -41,4 +41,3 @@ class PatientCharacteristicEthnicity extends QDMBaseType public $_type = 'QDM::PatientCharacteristicEthnicity'; } - diff --git a/src/Cqm/Qdm/PatientCharacteristicExpired.php b/src/Cqm/Qdm/PatientCharacteristicExpired.php index 8041b96874cf..a8de5d61d252 100644 --- a/src/Cqm/Qdm/PatientCharacteristicExpired.php +++ b/src/Cqm/Qdm/PatientCharacteristicExpired.php @@ -51,4 +51,3 @@ class PatientCharacteristicExpired extends QDMBaseType public $_type = 'QDM::PatientCharacteristicExpired'; } - diff --git a/src/Cqm/Qdm/PatientCharacteristicPayer.php b/src/Cqm/Qdm/PatientCharacteristicPayer.php index 6602ee4eaaee..3b9b88040e11 100644 --- a/src/Cqm/Qdm/PatientCharacteristicPayer.php +++ b/src/Cqm/Qdm/PatientCharacteristicPayer.php @@ -46,4 +46,3 @@ class PatientCharacteristicPayer extends QDMBaseType public $_type = 'QDM::PatientCharacteristicPayer'; } - diff --git a/src/Cqm/Qdm/PatientCharacteristicRace.php b/src/Cqm/Qdm/PatientCharacteristicRace.php index b0de64871db1..fd1fd1194eb6 100644 --- a/src/Cqm/Qdm/PatientCharacteristicRace.php +++ b/src/Cqm/Qdm/PatientCharacteristicRace.php @@ -41,4 +41,3 @@ class PatientCharacteristicRace extends QDMBaseType public $_type = 'QDM::PatientCharacteristicRace'; } - diff --git a/src/Cqm/Qdm/PatientCharacteristicSex.php b/src/Cqm/Qdm/PatientCharacteristicSex.php index 05f9fef5fa1c..a2a0b1a9bdf0 100644 --- a/src/Cqm/Qdm/PatientCharacteristicSex.php +++ b/src/Cqm/Qdm/PatientCharacteristicSex.php @@ -41,4 +41,3 @@ class PatientCharacteristicSex extends QDMBaseType public $_type = 'QDM::PatientCharacteristicSex'; } - diff --git a/src/Cqm/Qdm/PatientEntity.php b/src/Cqm/Qdm/PatientEntity.php index 79c0da62cec1..e7350fd664b0 100644 --- a/src/Cqm/Qdm/PatientEntity.php +++ b/src/Cqm/Qdm/PatientEntity.php @@ -26,4 +26,3 @@ class PatientEntity extends Entity public $_type = 'QDM::PatientEntity'; } - diff --git a/src/Cqm/Qdm/PhysicalExamOrder.php b/src/Cqm/Qdm/PhysicalExamOrder.php index 032bdf690e5c..a2ebb467b356 100644 --- a/src/Cqm/Qdm/PhysicalExamOrder.php +++ b/src/Cqm/Qdm/PhysicalExamOrder.php @@ -66,4 +66,3 @@ class PhysicalExamOrder extends QDMBaseType public $_type = 'QDM::PhysicalExamOrder'; } - diff --git a/src/Cqm/Qdm/PhysicalExamPerformed.php b/src/Cqm/Qdm/PhysicalExamPerformed.php index 45e9adbe975a..91b4fa407994 100644 --- a/src/Cqm/Qdm/PhysicalExamPerformed.php +++ b/src/Cqm/Qdm/PhysicalExamPerformed.php @@ -58,7 +58,7 @@ class PhysicalExamPerformed extends QDMBaseType * @property array $components */ public $components = [ - + ]; /** @@ -70,7 +70,7 @@ class PhysicalExamPerformed extends QDMBaseType * @property array $relatedTo */ public $relatedTo = [ - + ]; /** @@ -100,4 +100,3 @@ class PhysicalExamPerformed extends QDMBaseType public $_type = 'QDM::PhysicalExamPerformed'; } - diff --git a/src/Cqm/Qdm/PhysicalExamRecommended.php b/src/Cqm/Qdm/PhysicalExamRecommended.php index 5370ef4c673d..8edd15c78167 100644 --- a/src/Cqm/Qdm/PhysicalExamRecommended.php +++ b/src/Cqm/Qdm/PhysicalExamRecommended.php @@ -66,4 +66,3 @@ class PhysicalExamRecommended extends QDMBaseType public $_type = 'QDM::PhysicalExamRecommended'; } - diff --git a/src/Cqm/Qdm/PositiveAssessmentOrder.php b/src/Cqm/Qdm/PositiveAssessmentOrder.php index 3947bb825611..abbf4ec982e6 100644 --- a/src/Cqm/Qdm/PositiveAssessmentOrder.php +++ b/src/Cqm/Qdm/PositiveAssessmentOrder.php @@ -26,4 +26,3 @@ class PositiveAssessmentOrder extends AssessmentOrder public $_type = 'QDM::PositiveAssessmentOrder'; } - diff --git a/src/Cqm/Qdm/PositiveAssessmentPerformed.php b/src/Cqm/Qdm/PositiveAssessmentPerformed.php index 480aecd803c0..c84354ff289d 100644 --- a/src/Cqm/Qdm/PositiveAssessmentPerformed.php +++ b/src/Cqm/Qdm/PositiveAssessmentPerformed.php @@ -26,4 +26,3 @@ class PositiveAssessmentPerformed extends AssessmentPerformed public $_type = 'QDM::PositiveAssessmentPerformed'; } - diff --git a/src/Cqm/Qdm/PositiveAssessmentRecommended.php b/src/Cqm/Qdm/PositiveAssessmentRecommended.php index 3141b4411bc4..890c8274249e 100644 --- a/src/Cqm/Qdm/PositiveAssessmentRecommended.php +++ b/src/Cqm/Qdm/PositiveAssessmentRecommended.php @@ -26,4 +26,3 @@ class PositiveAssessmentRecommended extends AssessmentRecommended public $_type = 'QDM::PositiveAssessmentRecommended'; } - diff --git a/src/Cqm/Qdm/PositiveCommunicationPerformed.php b/src/Cqm/Qdm/PositiveCommunicationPerformed.php index 7f9711063627..e4a82a77d311 100644 --- a/src/Cqm/Qdm/PositiveCommunicationPerformed.php +++ b/src/Cqm/Qdm/PositiveCommunicationPerformed.php @@ -26,4 +26,3 @@ class PositiveCommunicationPerformed extends CommunicationPerformed public $_type = 'QDM::PositiveCommunicationPerformed'; } - diff --git a/src/Cqm/Qdm/PositiveDeviceApplied.php b/src/Cqm/Qdm/PositiveDeviceApplied.php index 9ba84f68cee4..cb593c8399d1 100644 --- a/src/Cqm/Qdm/PositiveDeviceApplied.php +++ b/src/Cqm/Qdm/PositiveDeviceApplied.php @@ -26,4 +26,3 @@ class PositiveDeviceApplied extends DeviceApplied public $_type = 'QDM::PositiveDeviceApplied'; } - diff --git a/src/Cqm/Qdm/PositiveDeviceOrder.php b/src/Cqm/Qdm/PositiveDeviceOrder.php index 0e1e34360523..15969c1d918d 100644 --- a/src/Cqm/Qdm/PositiveDeviceOrder.php +++ b/src/Cqm/Qdm/PositiveDeviceOrder.php @@ -26,4 +26,3 @@ class PositiveDeviceOrder extends DeviceOrder public $_type = 'QDM::PositiveDeviceOrder'; } - diff --git a/src/Cqm/Qdm/PositiveDeviceRecommended.php b/src/Cqm/Qdm/PositiveDeviceRecommended.php index 5944ea209234..c0fab47f487d 100644 --- a/src/Cqm/Qdm/PositiveDeviceRecommended.php +++ b/src/Cqm/Qdm/PositiveDeviceRecommended.php @@ -26,4 +26,3 @@ class PositiveDeviceRecommended extends DeviceRecommended public $_type = 'QDM::PositiveDeviceRecommended'; } - diff --git a/src/Cqm/Qdm/PositiveDiagnosticStudyOrder.php b/src/Cqm/Qdm/PositiveDiagnosticStudyOrder.php index 8ef23e786396..a92b15573547 100644 --- a/src/Cqm/Qdm/PositiveDiagnosticStudyOrder.php +++ b/src/Cqm/Qdm/PositiveDiagnosticStudyOrder.php @@ -26,4 +26,3 @@ class PositiveDiagnosticStudyOrder extends DiagnosticStudyOrder public $_type = 'QDM::PositiveDiagnosticStudyOrder'; } - diff --git a/src/Cqm/Qdm/PositiveDiagnosticStudyPerformed.php b/src/Cqm/Qdm/PositiveDiagnosticStudyPerformed.php index 832e5befacb4..ef9eb7cf92e6 100644 --- a/src/Cqm/Qdm/PositiveDiagnosticStudyPerformed.php +++ b/src/Cqm/Qdm/PositiveDiagnosticStudyPerformed.php @@ -26,4 +26,3 @@ class PositiveDiagnosticStudyPerformed extends DiagnosticStudyPerformed public $_type = 'QDM::PositiveDiagnosticStudyPerformed'; } - diff --git a/src/Cqm/Qdm/PositiveDiagnosticStudyRecommended.php b/src/Cqm/Qdm/PositiveDiagnosticStudyRecommended.php index 56d63823c1cd..53ad2ac07009 100644 --- a/src/Cqm/Qdm/PositiveDiagnosticStudyRecommended.php +++ b/src/Cqm/Qdm/PositiveDiagnosticStudyRecommended.php @@ -26,4 +26,3 @@ class PositiveDiagnosticStudyRecommended extends DiagnosticStudyRecommended public $_type = 'QDM::PositiveDiagnosticStudyRecommended'; } - diff --git a/src/Cqm/Qdm/PositiveEncounterOrder.php b/src/Cqm/Qdm/PositiveEncounterOrder.php index 4ec542dc5cf3..1eded73f9651 100644 --- a/src/Cqm/Qdm/PositiveEncounterOrder.php +++ b/src/Cqm/Qdm/PositiveEncounterOrder.php @@ -26,4 +26,3 @@ class PositiveEncounterOrder extends EncounterOrder public $_type = 'QDM::PositiveEncounterOrder'; } - diff --git a/src/Cqm/Qdm/PositiveEncounterPerformed.php b/src/Cqm/Qdm/PositiveEncounterPerformed.php index 10aca27cecbc..790b5edf722a 100644 --- a/src/Cqm/Qdm/PositiveEncounterPerformed.php +++ b/src/Cqm/Qdm/PositiveEncounterPerformed.php @@ -26,4 +26,3 @@ class PositiveEncounterPerformed extends EncounterPerformed public $_type = 'QDM::PositiveEncounterPerformed'; } - diff --git a/src/Cqm/Qdm/PositiveEncounterRecommended.php b/src/Cqm/Qdm/PositiveEncounterRecommended.php index 4b669694acad..78c55e7dbb91 100644 --- a/src/Cqm/Qdm/PositiveEncounterRecommended.php +++ b/src/Cqm/Qdm/PositiveEncounterRecommended.php @@ -26,4 +26,3 @@ class PositiveEncounterRecommended extends EncounterRecommended public $_type = 'QDM::PositiveEncounterRecommended'; } - diff --git a/src/Cqm/Qdm/PositiveImmunizationAdministered.php b/src/Cqm/Qdm/PositiveImmunizationAdministered.php index 698b61cf58e0..3bffaebee3d1 100644 --- a/src/Cqm/Qdm/PositiveImmunizationAdministered.php +++ b/src/Cqm/Qdm/PositiveImmunizationAdministered.php @@ -26,4 +26,3 @@ class PositiveImmunizationAdministered extends ImmunizationAdministered public $_type = 'QDM::PositiveImmunizationAdministered'; } - diff --git a/src/Cqm/Qdm/PositiveImmunizationOrder.php b/src/Cqm/Qdm/PositiveImmunizationOrder.php index d93e07570340..6492d406b954 100644 --- a/src/Cqm/Qdm/PositiveImmunizationOrder.php +++ b/src/Cqm/Qdm/PositiveImmunizationOrder.php @@ -26,4 +26,3 @@ class PositiveImmunizationOrder extends ImmunizationOrder public $_type = 'QDM::PositiveImmunizationOrder'; } - diff --git a/src/Cqm/Qdm/PositiveInterventionOrder.php b/src/Cqm/Qdm/PositiveInterventionOrder.php index 8f3429fbfbda..661d9eddc0d9 100644 --- a/src/Cqm/Qdm/PositiveInterventionOrder.php +++ b/src/Cqm/Qdm/PositiveInterventionOrder.php @@ -26,4 +26,3 @@ class PositiveInterventionOrder extends InterventionOrder public $_type = 'QDM::PositiveInterventionOrder'; } - diff --git a/src/Cqm/Qdm/PositiveInterventionPerformed.php b/src/Cqm/Qdm/PositiveInterventionPerformed.php index 0b8018144ff6..c1f59fbf4258 100644 --- a/src/Cqm/Qdm/PositiveInterventionPerformed.php +++ b/src/Cqm/Qdm/PositiveInterventionPerformed.php @@ -26,4 +26,3 @@ class PositiveInterventionPerformed extends InterventionPerformed public $_type = 'QDM::PositiveInterventionPerformed'; } - diff --git a/src/Cqm/Qdm/PositiveInterventionRecommended.php b/src/Cqm/Qdm/PositiveInterventionRecommended.php index 68248576377f..5d4d49245dd6 100644 --- a/src/Cqm/Qdm/PositiveInterventionRecommended.php +++ b/src/Cqm/Qdm/PositiveInterventionRecommended.php @@ -26,4 +26,3 @@ class PositiveInterventionRecommended extends InterventionRecommended public $_type = 'QDM::PositiveInterventionRecommended'; } - diff --git a/src/Cqm/Qdm/PositiveLaboratoryTestOrder.php b/src/Cqm/Qdm/PositiveLaboratoryTestOrder.php index 6782b0713f58..bc80d4eb8b1b 100644 --- a/src/Cqm/Qdm/PositiveLaboratoryTestOrder.php +++ b/src/Cqm/Qdm/PositiveLaboratoryTestOrder.php @@ -26,4 +26,3 @@ class PositiveLaboratoryTestOrder extends LaboratoryTestOrder public $_type = 'QDM::PositiveLaboratoryTestOrder'; } - diff --git a/src/Cqm/Qdm/PositiveLaboratoryTestPerformed.php b/src/Cqm/Qdm/PositiveLaboratoryTestPerformed.php index a4a62783026f..4f9c31e582f7 100644 --- a/src/Cqm/Qdm/PositiveLaboratoryTestPerformed.php +++ b/src/Cqm/Qdm/PositiveLaboratoryTestPerformed.php @@ -26,4 +26,3 @@ class PositiveLaboratoryTestPerformed extends LaboratoryTestPerformed public $_type = 'QDM::PositiveLaboratoryTestPerformed'; } - diff --git a/src/Cqm/Qdm/PositiveLaboratoryTestRecommended.php b/src/Cqm/Qdm/PositiveLaboratoryTestRecommended.php index 5d0f448669d4..b964852d1303 100644 --- a/src/Cqm/Qdm/PositiveLaboratoryTestRecommended.php +++ b/src/Cqm/Qdm/PositiveLaboratoryTestRecommended.php @@ -26,4 +26,3 @@ class PositiveLaboratoryTestRecommended extends LaboratoryTestRecommended public $_type = 'QDM::PositiveLaboratoryTestRecommended'; } - diff --git a/src/Cqm/Qdm/PositiveMedicationAdministered.php b/src/Cqm/Qdm/PositiveMedicationAdministered.php index e3f5ce7de21c..1eb960cf0f4f 100644 --- a/src/Cqm/Qdm/PositiveMedicationAdministered.php +++ b/src/Cqm/Qdm/PositiveMedicationAdministered.php @@ -26,4 +26,3 @@ class PositiveMedicationAdministered extends MedicationAdministered public $_type = 'QDM::PositiveMedicationAdministered'; } - diff --git a/src/Cqm/Qdm/PositiveMedicationDischarge.php b/src/Cqm/Qdm/PositiveMedicationDischarge.php index 0d22dea85265..4edb605bf3d8 100644 --- a/src/Cqm/Qdm/PositiveMedicationDischarge.php +++ b/src/Cqm/Qdm/PositiveMedicationDischarge.php @@ -26,4 +26,3 @@ class PositiveMedicationDischarge extends MedicationDischarge public $_type = 'QDM::PositiveMedicationDischarge'; } - diff --git a/src/Cqm/Qdm/PositiveMedicationDispensed.php b/src/Cqm/Qdm/PositiveMedicationDispensed.php index 140fac64fa85..e18a810583cf 100644 --- a/src/Cqm/Qdm/PositiveMedicationDispensed.php +++ b/src/Cqm/Qdm/PositiveMedicationDispensed.php @@ -26,4 +26,3 @@ class PositiveMedicationDispensed extends MedicationDispensed public $_type = 'QDM::PositiveMedicationDispensed'; } - diff --git a/src/Cqm/Qdm/PositiveMedicationOrder.php b/src/Cqm/Qdm/PositiveMedicationOrder.php index 4c0b1da4da97..7d4c450068ea 100644 --- a/src/Cqm/Qdm/PositiveMedicationOrder.php +++ b/src/Cqm/Qdm/PositiveMedicationOrder.php @@ -26,4 +26,3 @@ class PositiveMedicationOrder extends MedicationOrder public $_type = 'QDM::PositiveMedicationOrder'; } - diff --git a/src/Cqm/Qdm/PositivePhysicalExamOrder.php b/src/Cqm/Qdm/PositivePhysicalExamOrder.php index 0d666c83d63b..831544c55451 100644 --- a/src/Cqm/Qdm/PositivePhysicalExamOrder.php +++ b/src/Cqm/Qdm/PositivePhysicalExamOrder.php @@ -26,4 +26,3 @@ class PositivePhysicalExamOrder extends PhysicalExamOrder public $_type = 'QDM::PositivePhysicalExamOrder'; } - diff --git a/src/Cqm/Qdm/PositivePhysicalExamPerformed.php b/src/Cqm/Qdm/PositivePhysicalExamPerformed.php index cf013b0f67a9..d390537b4ed4 100644 --- a/src/Cqm/Qdm/PositivePhysicalExamPerformed.php +++ b/src/Cqm/Qdm/PositivePhysicalExamPerformed.php @@ -26,4 +26,3 @@ class PositivePhysicalExamPerformed extends PhysicalExamPerformed public $_type = 'QDM::PositivePhysicalExamPerformed'; } - diff --git a/src/Cqm/Qdm/PositivePhysicalExamRecommended.php b/src/Cqm/Qdm/PositivePhysicalExamRecommended.php index 7628e284c1f9..3dcd99fe148d 100644 --- a/src/Cqm/Qdm/PositivePhysicalExamRecommended.php +++ b/src/Cqm/Qdm/PositivePhysicalExamRecommended.php @@ -26,4 +26,3 @@ class PositivePhysicalExamRecommended extends PhysicalExamRecommended public $_type = 'QDM::PositivePhysicalExamRecommended'; } - diff --git a/src/Cqm/Qdm/PositiveProcedureOrder.php b/src/Cqm/Qdm/PositiveProcedureOrder.php index 155b19b1aa0f..9bb41e0abeaf 100644 --- a/src/Cqm/Qdm/PositiveProcedureOrder.php +++ b/src/Cqm/Qdm/PositiveProcedureOrder.php @@ -26,4 +26,3 @@ class PositiveProcedureOrder extends ProcedureOrder public $_type = 'QDM::PositiveProcedureOrder'; } - diff --git a/src/Cqm/Qdm/PositiveProcedurePerformed.php b/src/Cqm/Qdm/PositiveProcedurePerformed.php index 6d72f107d21c..b8fbbce52769 100644 --- a/src/Cqm/Qdm/PositiveProcedurePerformed.php +++ b/src/Cqm/Qdm/PositiveProcedurePerformed.php @@ -26,4 +26,3 @@ class PositiveProcedurePerformed extends ProcedurePerformed public $_type = 'QDM::PositiveProcedurePerformed'; } - diff --git a/src/Cqm/Qdm/PositiveProcedureRecommended.php b/src/Cqm/Qdm/PositiveProcedureRecommended.php index 40217ef5197a..efbbff1cef5f 100644 --- a/src/Cqm/Qdm/PositiveProcedureRecommended.php +++ b/src/Cqm/Qdm/PositiveProcedureRecommended.php @@ -26,4 +26,3 @@ class PositiveProcedureRecommended extends ProcedureRecommended public $_type = 'QDM::PositiveProcedureRecommended'; } - diff --git a/src/Cqm/Qdm/PositiveSubstanceAdministered.php b/src/Cqm/Qdm/PositiveSubstanceAdministered.php index 2758d078ff70..53a689fe6667 100644 --- a/src/Cqm/Qdm/PositiveSubstanceAdministered.php +++ b/src/Cqm/Qdm/PositiveSubstanceAdministered.php @@ -26,4 +26,3 @@ class PositiveSubstanceAdministered extends SubstanceAdministered public $_type = 'QDM::PositiveSubstanceAdministered'; } - diff --git a/src/Cqm/Qdm/PositiveSubstanceOrder.php b/src/Cqm/Qdm/PositiveSubstanceOrder.php index ec389fd593a9..01c71b117ec1 100644 --- a/src/Cqm/Qdm/PositiveSubstanceOrder.php +++ b/src/Cqm/Qdm/PositiveSubstanceOrder.php @@ -26,4 +26,3 @@ class PositiveSubstanceOrder extends SubstanceOrder public $_type = 'QDM::PositiveSubstanceOrder'; } - diff --git a/src/Cqm/Qdm/PositiveSubstanceRecommended.php b/src/Cqm/Qdm/PositiveSubstanceRecommended.php index c7c06d46d782..a6d0ebfb9353 100644 --- a/src/Cqm/Qdm/PositiveSubstanceRecommended.php +++ b/src/Cqm/Qdm/PositiveSubstanceRecommended.php @@ -26,4 +26,3 @@ class PositiveSubstanceRecommended extends SubstanceRecommended public $_type = 'QDM::PositiveSubstanceRecommended'; } - diff --git a/src/Cqm/Qdm/Practitioner.php b/src/Cqm/Qdm/Practitioner.php index 60534bb28081..4473d500ac49 100644 --- a/src/Cqm/Qdm/Practitioner.php +++ b/src/Cqm/Qdm/Practitioner.php @@ -41,4 +41,3 @@ class Practitioner extends Entity public $_type = 'QDM::Practitioner'; } - diff --git a/src/Cqm/Qdm/ProcedureOrder.php b/src/Cqm/Qdm/ProcedureOrder.php index bb6456fc4159..71638ee6926e 100644 --- a/src/Cqm/Qdm/ProcedureOrder.php +++ b/src/Cqm/Qdm/ProcedureOrder.php @@ -76,4 +76,3 @@ class ProcedureOrder extends QDMBaseType public $_type = 'QDM::ProcedureOrder'; } - diff --git a/src/Cqm/Qdm/ProcedurePerformed.php b/src/Cqm/Qdm/ProcedurePerformed.php index 89bde9fc79a5..15d2eec2f2cc 100644 --- a/src/Cqm/Qdm/ProcedurePerformed.php +++ b/src/Cqm/Qdm/ProcedurePerformed.php @@ -73,7 +73,7 @@ class ProcedurePerformed extends QDMBaseType * @property array $components */ public $components = [ - + ]; /** @@ -85,7 +85,7 @@ class ProcedurePerformed extends QDMBaseType * @property array $relatedTo */ public $relatedTo = [ - + ]; /** @@ -115,4 +115,3 @@ class ProcedurePerformed extends QDMBaseType public $_type = 'QDM::ProcedurePerformed'; } - diff --git a/src/Cqm/Qdm/ProcedureRecommended.php b/src/Cqm/Qdm/ProcedureRecommended.php index 60b2e9c40202..943e901f90aa 100644 --- a/src/Cqm/Qdm/ProcedureRecommended.php +++ b/src/Cqm/Qdm/ProcedureRecommended.php @@ -71,4 +71,3 @@ class ProcedureRecommended extends QDMBaseType public $_type = 'QDM::ProcedureRecommended'; } - diff --git a/src/Cqm/Qdm/ProviderCareExperience.php b/src/Cqm/Qdm/ProviderCareExperience.php index 32e64f6fe316..84eae0f5806c 100644 --- a/src/Cqm/Qdm/ProviderCareExperience.php +++ b/src/Cqm/Qdm/ProviderCareExperience.php @@ -51,4 +51,3 @@ class ProviderCareExperience extends QDMBaseType public $_type = 'QDM::ProviderCareExperience'; } - diff --git a/src/Cqm/Qdm/QDMBaseType.php b/src/Cqm/Qdm/QDMBaseType.php index 4ce0e7f504ae..a2cb367f2f5a 100644 --- a/src/Cqm/Qdm/QDMBaseType.php +++ b/src/Cqm/Qdm/QDMBaseType.php @@ -36,4 +36,3 @@ class QDMBaseType extends \OpenEMR\Cqm\Qdm\BaseTypes\DataElement public $_type = 'QDM::QDMBaseType'; } - diff --git a/src/Cqm/Qdm/RelatedPerson.php b/src/Cqm/Qdm/RelatedPerson.php index 1256171911fd..9a0744702c72 100644 --- a/src/Cqm/Qdm/RelatedPerson.php +++ b/src/Cqm/Qdm/RelatedPerson.php @@ -51,4 +51,3 @@ class RelatedPerson extends QDMBaseType public $_type = 'QDM::RelatedPerson'; } - diff --git a/src/Cqm/Qdm/ResultComponent.php b/src/Cqm/Qdm/ResultComponent.php index faf80735c9c8..811e7d43aff7 100644 --- a/src/Cqm/Qdm/ResultComponent.php +++ b/src/Cqm/Qdm/ResultComponent.php @@ -21,4 +21,3 @@ class ResultComponent extends Component public $_type = 'QDM::ResultComponent'; } - diff --git a/src/Cqm/Qdm/SubstanceAdministered.php b/src/Cqm/Qdm/SubstanceAdministered.php index 88c8599ccea1..b15aa57254d7 100644 --- a/src/Cqm/Qdm/SubstanceAdministered.php +++ b/src/Cqm/Qdm/SubstanceAdministered.php @@ -81,4 +81,3 @@ class SubstanceAdministered extends QDMBaseType public $_type = 'QDM::SubstanceAdministered'; } - diff --git a/src/Cqm/Qdm/SubstanceOrder.php b/src/Cqm/Qdm/SubstanceOrder.php index cbbeec4b404f..05eb299838be 100644 --- a/src/Cqm/Qdm/SubstanceOrder.php +++ b/src/Cqm/Qdm/SubstanceOrder.php @@ -91,4 +91,3 @@ class SubstanceOrder extends QDMBaseType public $_type = 'QDM::SubstanceOrder'; } - diff --git a/src/Cqm/Qdm/SubstanceRecommended.php b/src/Cqm/Qdm/SubstanceRecommended.php index c418f4b617c9..4b447e8c2ca6 100644 --- a/src/Cqm/Qdm/SubstanceRecommended.php +++ b/src/Cqm/Qdm/SubstanceRecommended.php @@ -81,4 +81,3 @@ class SubstanceRecommended extends QDMBaseType public $_type = 'QDM::SubstanceRecommended'; } - diff --git a/src/Cqm/Qdm/Symptom.php b/src/Cqm/Qdm/Symptom.php index b04f9dbe3ca9..0fc973077c28 100644 --- a/src/Cqm/Qdm/Symptom.php +++ b/src/Cqm/Qdm/Symptom.php @@ -56,4 +56,3 @@ class Symptom extends QDMBaseType public $_type = 'QDM::Symptom'; } - diff --git a/src/Cqm/hqmfOid_to_datatype_map.json b/src/Cqm/hqmfOid_to_datatype_map.json index 9131acc17774..3d841a6030fc 100644 --- a/src/Cqm/hqmfOid_to_datatype_map.json +++ b/src/Cqm/hqmfOid_to_datatype_map.json @@ -1 +1 @@ -{"2.16.840.1.113883.10.20.24.3.161":"PatientEntity","2.16.840.1.113883.10.20.24.3.160":"CarePartner","2.16.840.1.113883.10.20.24.3.162":"Practitioner","2.16.840.1.113883.10.20.24.3.163":"Organization","2.16.840.1.113883.10.20.24.3.136":"Symptom","2.16.840.1.113883.10.20.24.3.135":"Diagnosis","2.16.840.1.113883.10.20.24.3.51":"PatientCharacteristicClinicalTrialParticipant","2.16.840.1.113883.10.20.24.3.12":"FamilyHistory","2.16.840.1.113883.10.20.24.3.140":"ImmunizationAdministered","2.16.840.1.113883.10.20.24.3.19":"DiagnosticStudyRecommended"} \ No newline at end of file +{"2.16.840.1.113883.10.20.24.3.161":"PatientEntity","2.16.840.1.113883.10.20.24.3.160":"CarePartner","2.16.840.1.113883.10.20.24.3.162":"Practitioner","2.16.840.1.113883.10.20.24.3.163":"Organization","2.16.840.1.113883.10.20.24.3.136":"Symptom","2.16.840.1.113883.10.20.24.3.135":"Diagnosis","2.16.840.1.113883.10.20.24.3.51":"PatientCharacteristicClinicalTrialParticipant","2.16.840.1.113883.10.20.24.3.12":"FamilyHistory","2.16.840.1.113883.10.20.24.3.140":"ImmunizationAdministered","2.16.840.1.113883.10.20.24.3.19":"DiagnosticStudyRecommended"} diff --git a/src/Services/CareExperiencePreferenceService.php b/src/Services/CareExperiencePreferenceService.php index 312a8dbd1660..da63bcc2f223 100644 --- a/src/Services/CareExperiencePreferenceService.php +++ b/src/Services/CareExperiencePreferenceService.php @@ -32,11 +32,11 @@ public function __construct() */ public function getAvailableLoincCodes() { - $sql = "SELECT option_id as loinc_code, + $sql = "SELECT option_id as loinc_code, title as display_name, notes as answer_list_id, codes - FROM list_options + FROM list_options WHERE list_id = ? AND activity = 1 ORDER BY seq, title"; @@ -91,7 +91,7 @@ public function getOne($id) public function insert($data) { $data['uuid'] = UuidRegistry::getRegistryForTable(self::TABLE_NAME)->createUuid(); - $sql = "INSERT INTO " . escape_table_name(self::TABLE_NAME) . " + $sql = "INSERT INTO " . escape_table_name(self::TABLE_NAME) . " SET patient_id = ?, uuid = ?, observation_code = ?, diff --git a/src/Services/CarePlanService.php b/src/Services/CarePlanService.php index d6c2835a635b..6296b18b6470 100644 --- a/src/Services/CarePlanService.php +++ b/src/Services/CarePlanService.php @@ -223,17 +223,17 @@ public function search($search, $isAndCondition = true): ProcessingResult ,username AS provider_username FROM users ) provider ON fcp.care_plan_user = provider.provider_username - LEFT JOIN `list_options` l ON l.option_id = fcp.care_plan_type + LEFT JOIN `list_options` l ON l.option_id = fcp.care_plan_type AND l.list_id = 'Plan_of_Care_Type' LEFT JOIN ( - SELECT + SELECT fcp_goal.pid, fcp_goal.encounter, GROUP_CONCAT(DISTINCT fcp_goal.id SEPARATOR ',') AS goal_care_plan_ids FROM form_care_plan fcp_goal WHERE fcp_goal.care_plan_type = 'goal' GROUP BY fcp_goal.pid, fcp_goal.encounter - ) goals ON goals.pid = fcp.pid + ) goals ON goals.pid = fcp.pid AND (goals.encounter = fcp.encounter OR goals.encounter IS NULL) WHERE f.formdir = 'care_plan' AND f.deleted = 0"; diff --git a/src/Services/ContactRelationService.php b/src/Services/ContactRelationService.php index eb53e46dec73..46680ccd7d5f 100644 --- a/src/Services/ContactRelationService.php +++ b/src/Services/ContactRelationService.php @@ -867,8 +867,8 @@ public function saveRelatedPersons( $person_metadata = [ 'first_name' => $relatedPerson['first_name'] ?? '', - 'middle_name' => $relatedPerson['middle_name'] ?? '', - 'last_name' => $relatedPerson['last_name'] ?? '', + 'middle_name' => $relatedPerson['middle_name'] ?? '', + 'last_name' => $relatedPerson['last_name'] ?? '', 'gender' => $relatedPerson['gender'] ?? '', 'birth_date' => $relatedPerson['birth_date'] ?? '' ]; diff --git a/src/Services/PersonPatientLinkService.php b/src/Services/PersonPatientLinkService.php index 82b1426c933b..bf2984cb04d5 100644 --- a/src/Services/PersonPatientLinkService.php +++ b/src/Services/PersonPatientLinkService.php @@ -73,8 +73,8 @@ public function linkPersonToPatient( } // Create the link - $sql = "INSERT INTO person_patient_link - (person_id, patient_id, linked_by, link_method, notes, active) + $sql = "INSERT INTO person_patient_link + (person_id, patient_id, linked_by, link_method, notes, active) VALUES (?, ?, ?, ?, ?, 1)"; $result = QueryUtils::sqlInsert($sql, [ @@ -120,8 +120,8 @@ public function unlinkPersonFromPatient(int $personId, int $patientId): Processi $processingResult = new ProcessingResult(); try { - $sql = "UPDATE person_patient_link - SET active = 0 + $sql = "UPDATE person_patient_link + SET active = 0 WHERE person_id = ? AND patient_id = ? AND active = 1"; $result = QueryUtils::sqlStatementThrowException($sql, [$personId, $patientId]); @@ -152,13 +152,13 @@ public function unlinkPersonFromPatient(int $personId, int $patientId): Processi */ public function getActiveLink(int $personId, int $patientId): ?array { - $sql = "SELECT ppl.*, + $sql = "SELECT ppl.*, u.username as linked_by_username, CONCAT(u.fname, ' ', u.lname) as linked_by_name FROM person_patient_link ppl LEFT JOIN users u ON u.id = ppl.linked_by - WHERE ppl.person_id = ? - AND ppl.patient_id = ? + WHERE ppl.person_id = ? + AND ppl.patient_id = ? AND ppl.active = 1"; return QueryUtils::querySingleRow($sql, [$personId, $patientId]) ?: null; @@ -169,7 +169,7 @@ public function getActiveLink(int $personId, int $patientId): ?array */ public function getLink(int $linkId): ?array { - $sql = "SELECT ppl.*, + $sql = "SELECT ppl.*, u.username as linked_by_username, CONCAT(u.fname, ' ', u.lname) as linked_by_name, p.first_name as person_first_name, @@ -226,29 +226,29 @@ public function findPotentialPersonMatches( string $last_name, string $birthDate ): array { - $sql = "SELECT p.*, + $sql = "SELECT p.*, c.id as contact_id, COUNT(DISTINCT cr.id) as relationship_count, GROUP_CONCAT( DISTINCT CONCAT( - cr.relationship, - ' of ', - pd_related.fname, ' ', pd_related.lname, + cr.relationship, + ' of ', + pd_related.fname, ' ', pd_related.lname, ' (', pd_related.pid, ')' - ) + ) SEPARATOR '; ' ) as relationships_summary FROM person p LEFT JOIN contact c ON c.foreign_table_name = 'person' AND c.foreign_id = p.id LEFT JOIN contact_relation cr ON cr.contact_id = c.id AND cr.active = 1 - LEFT JOIN patient_data pd_related ON - cr.target_table = 'patient_data' AND + LEFT JOIN patient_data pd_related ON + cr.target_table = 'patient_data' AND cr.target_id = pd_related.id - WHERE p.first_name = ? - AND p.last_name = ? + WHERE p.first_name = ? + AND p.last_name = ? AND p.birth_date = ? AND NOT EXISTS ( - SELECT 1 FROM person_patient_link ppl + SELECT 1 FROM person_patient_link ppl WHERE ppl.person_id = p.id AND ppl.active = 1 ) GROUP BY p.id @@ -269,7 +269,7 @@ public function findPotentialPersonMatches( */ public function getRelationshipsForPatient(int $patientId): array { - $sql = "SELECT + $sql = "SELECT cr.*, p_related.first_name as related_person_first_name, p_related.last_name as related_person_last_name, @@ -283,18 +283,18 @@ public function getRelationshipsForPatient(int $patientId): array JOIN contact c ON c.foreign_table_name = 'person' AND c.foreign_id = p.id JOIN contact_relation cr ON cr.contact_id = c.id AND cr.active = 1 LEFT JOIN contact c_related ON c_related.id = ( - SELECT c2.id FROM contact c2 - WHERE c2.foreign_table = cr.target_table + SELECT c2.id FROM contact c2 + WHERE c2.foreign_table = cr.target_table AND c2.foreign_id = cr.target_id LIMIT 1 ) - LEFT JOIN person p_related ON - cr.target_table = 'person' AND + LEFT JOIN person p_related ON + cr.target_table = 'person' AND c_related.foreign_id = p_related.id - LEFT JOIN patient_data pd_related ON - cr.target_table = 'patient_data' AND + LEFT JOIN patient_data pd_related ON + cr.target_table = 'patient_data' AND c_related.foreign_id = pd_related.id - WHERE ppl.patient_id = ? + WHERE ppl.patient_id = ? AND ppl.active = 1 ORDER BY cr.contact_priority, cr.relationship"; @@ -314,7 +314,7 @@ public function getRelationshipsForPatient(int $patientId): array */ public function findUnlinkedPersonsWhoArePatients(int $limit = 100): array { - $sql = "SELECT + $sql = "SELECT p.id as person_id, p.first_name, p.last_name, @@ -324,14 +324,14 @@ public function findUnlinkedPersonsWhoArePatients(int $limit = 100): array pd.regdate, COUNT(DISTINCT cr.id) as relationship_count FROM person p - JOIN patient_data pd ON - pd.fname = p.first_name AND - pd.lname = p.last_name AND + JOIN patient_data pd ON + pd.fname = p.first_name AND + pd.lname = p.last_name AND pd.DOB = p.birth_date LEFT JOIN contact c ON c.foreign_table_name = 'person' AND c.foreign_id = p.id LEFT JOIN contact_relation cr ON cr.contact_id = c.id AND cr.active = 1 WHERE NOT EXISTS ( - SELECT 1 FROM person_patient_link ppl + SELECT 1 FROM person_patient_link ppl WHERE ppl.person_id = p.id AND ppl.patient_id = pd.id AND ppl.active = 1 ) GROUP BY p.id, pd.id @@ -403,7 +403,7 @@ public function migrateUnlinkedPersons(int $limit = 100, ?int $userId = null): a */ public function getAllActiveLinks(int $limit = 50, int $offset = 0): array { - $sql = "SELECT + $sql = "SELECT ppl.*, p.first_name as person_first_name, p.last_name as person_last_name, @@ -453,9 +453,9 @@ public function getStatistics(): array // Links by method $methodCounts = QueryUtils::sqlStatementThrowException( - "SELECT link_method, COUNT(*) as cnt - FROM person_patient_link - WHERE active = 1 + "SELECT link_method, COUNT(*) as cnt + FROM person_patient_link + WHERE active = 1 GROUP BY link_method" ); @@ -466,15 +466,15 @@ public function getStatistics(): array // Persons linked to patients $stats['persons_linked'] = QueryUtils::querySingleRow( - "SELECT COUNT(DISTINCT person_id) as cnt - FROM person_patient_link + "SELECT COUNT(DISTINCT person_id) as cnt + FROM person_patient_link WHERE active = 1" )['cnt'] ?? 0; // Patients with linked person records $stats['patients_linked'] = QueryUtils::querySingleRow( - "SELECT COUNT(DISTINCT patient_id) as cnt - FROM person_patient_link + "SELECT COUNT(DISTINCT patient_id) as cnt + FROM person_patient_link WHERE active = 1" )['cnt'] ?? 0; diff --git a/src/Services/ProcedureOrderRelationshipService.php b/src/Services/ProcedureOrderRelationshipService.php index 718d4ce879a9..6f1ec583dc14 100644 --- a/src/Services/ProcedureOrderRelationshipService.php +++ b/src/Services/ProcedureOrderRelationshipService.php @@ -46,7 +46,7 @@ public function addRelationship($procedureOrderId, $resourceType, $resourceUuid, return false; } - $sql = "INSERT INTO procedure_order_relationships + $sql = "INSERT INTO procedure_order_relationships (procedure_order_id, resource_type, resource_uuid, relationship, created_by) VALUES (?, ?, ?, ?, ?)"; @@ -69,7 +69,7 @@ public function addRelationship($procedureOrderId, $resourceType, $resourceUuid, */ public function getRelationshipsByOrderId($procedureOrderId) { - $sql = "SELECT id, procedure_order_id, resource_type, resource_uuid, + $sql = "SELECT id, procedure_order_id, resource_type, resource_uuid, relationship, created_at, created_by FROM procedure_order_relationships WHERE procedure_order_id = ? @@ -96,7 +96,7 @@ public function getRelationshipsByOrderId($procedureOrderId) */ public function getRelationshipsByType($procedureOrderId, $resourceType) { - $sql = "SELECT id, procedure_order_id, resource_type, resource_uuid, + $sql = "SELECT id, procedure_order_id, resource_type, resource_uuid, relationship, created_at, created_by FROM procedure_order_relationships WHERE procedure_order_id = ? AND resource_type = ? @@ -147,7 +147,7 @@ public function deleteRelationshipsByOrderId($procedureOrderId) */ public function deleteRelationshipsByType($procedureOrderId, $resourceType) { - $sql = "DELETE FROM procedure_order_relationships + $sql = "DELETE FROM procedure_order_relationships WHERE procedure_order_id = ? AND resource_type = ?"; return sqlStatement($sql, [$procedureOrderId, $resourceType]) !== false; } @@ -167,10 +167,10 @@ public function relationshipExists($procedureOrderId, $resourceType, $resourceUu return false; } - $sql = "SELECT COUNT(*) as count + $sql = "SELECT COUNT(*) as count FROM procedure_order_relationships - WHERE procedure_order_id = ? - AND resource_type = ? + WHERE procedure_order_id = ? + AND resource_type = ? AND resource_uuid = ?"; $result = sqlQuery($sql, [$procedureOrderId, $resourceType, $uuidBinary]); @@ -186,8 +186,8 @@ public function relationshipExists($procedureOrderId, $resourceType, $resourceUu */ private function procedureOrderExists($procedureOrderId) { - $sql = "SELECT COUNT(*) as count - FROM procedure_order + $sql = "SELECT COUNT(*) as count + FROM procedure_order WHERE procedure_order_id = ? AND activity = 1"; $result = sqlQuery($sql, [$procedureOrderId]); @@ -290,7 +290,7 @@ public function getStatistics() $stats['total_relationships'] = $result['total'] ?? 0; // By resource type - $sql = "SELECT resource_type, COUNT(*) as count + $sql = "SELECT resource_type, COUNT(*) as count FROM procedure_order_relationships GROUP BY resource_type ORDER BY count DESC"; @@ -301,13 +301,13 @@ public function getStatistics() } // Orders with relationships - $sql = "SELECT COUNT(DISTINCT procedure_order_id) as count + $sql = "SELECT COUNT(DISTINCT procedure_order_id) as count FROM procedure_order_relationships"; $result = sqlQuery($sql); $stats['orders_with_relationships'] = $result['count'] ?? 0; // By relationship type - $sql = "SELECT relationship, COUNT(*) as count + $sql = "SELECT relationship, COUNT(*) as count FROM procedure_order_relationships WHERE relationship IS NOT NULL GROUP BY relationship @@ -319,7 +319,7 @@ public function getStatistics() } // Orphaned records - $sql = "SELECT COUNT(*) as count + $sql = "SELECT COUNT(*) as count FROM procedure_order_relationships por LEFT JOIN procedure_order po ON por.procedure_order_id = po.procedure_order_id WHERE po.procedure_order_id IS NULL OR po.activity = 0"; diff --git a/src/Services/Qrda/qrda-export/catI-r5/_code.mustache b/src/Services/Qrda/qrda-export/catI-r5/_code.mustache index 063339ea7b58..b438cd846e31 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/_code.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/_code.mustache @@ -1 +1 @@ -{{{code_and_codesystem}}} \ No newline at end of file +{{{code_and_codesystem}}} diff --git a/src/Services/Qrda/qrda-export/catI-r5/_codes.mustache b/src/Services/Qrda/qrda-export/catI-r5/_codes.mustache index 2e87008445ed..9061f1fea1e5 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/_codes.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/_codes.mustache @@ -1,10 +1,10 @@ -{{#multiple_codes}} - - {{{translation_codes_and_codesystem_list}}} - -{{/multiple_codes}} -{{^multiple_codes}} - {{#dataElementCodes}} - _code}}/> - {{/dataElementCodes}} -{{/multiple_codes}} +{{#multiple_codes}} + + {{{translation_codes_and_codesystem_list}}} + +{{/multiple_codes}} +{{^multiple_codes}} + {{#dataElementCodes}} + _code}}/> + {{/dataElementCodes}} +{{/multiple_codes}} diff --git a/src/Services/Qrda/qrda-export/catI-r5/_header.mustache b/src/Services/Qrda/qrda-export/catI-r5/_header.mustache index c161a8a68d9d..e56c563b8da1 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/_header.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/_header.mustache @@ -1,28 +1,28 @@ - - - - - - - - - - - - - - - -QRDA Incidence Report - - - - - -{{> qrda_header/_record_target}} -{{> qrda_header/_author}} -{{> qrda_header/_custodian}} -{{> qrda_header/_information_recipient}} -{{> qrda_header/_legal_authenticator}} -{{> qrda_header/_participant}} -{{> qrda_header/_documentation_of_service_event}} \ No newline at end of file + + + + + + + + + + + + + + + +QRDA Incidence Report + + + + + +{{> qrda_header/_record_target}} +{{> qrda_header/_author}} +{{> qrda_header/_custodian}} +{{> qrda_header/_information_recipient}} +{{> qrda_header/_legal_authenticator}} +{{> qrda_header/_participant}} +{{> qrda_header/_documentation_of_service_event}} diff --git a/src/Services/Qrda/qrda-export/catI-r5/_measure_section.mustache b/src/Services/Qrda/qrda-export/catI-r5/_measure_section.mustache index 1656fe9bbfa0..3039f92e76e2 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/_measure_section.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/_measure_section.mustache @@ -1,59 +1,59 @@ - -
- - - - - - - - Measure Section - -
z_xla('No matches were found.'); ?>
- - - - - - - - {{#measures}} - - - - - {{/measures}} - -
eMeasure TitleVersion specific identifier
{{description}}{{hqmf_id}} -
- - - {{#measures}} - - - - - - - - - - - - - - - {{description}} - - - - - - - {{/measures}} - - \ No newline at end of file + +
+ + + + + + + + Measure Section + + + + + + + + + + {{#measures}} + + + + + {{/measures}} + +
eMeasure TitleVersion specific identifier
{{description}}{{hqmf_id}} +
+
+ + {{#measures}} + + + + + + + + + + + + + + + {{description}} + + + + + + + {{/measures}} +
+
diff --git a/src/Services/Qrda/qrda-export/catI-r5/_reporting_period.mustache b/src/Services/Qrda/qrda-export/catI-r5/_reporting_period.mustache index 56c45e6a4c4c..d4f6229f959f 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/_reporting_period.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/_reporting_period.mustache @@ -1,23 +1,23 @@ - -
- - - - - Reporting Parameters - - - - - - - - - - - - - - -
-
\ No newline at end of file + +
+ + + + + Reporting Parameters + + + + + + + + + + + + + + +
+
diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda1_r5.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda1_r5.mustache index 14edaf18e328..2d1cf0bb0658 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda1_r5.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda1_r5.mustache @@ -1,213 +1,213 @@ - - - -{{> _header}} - - - - {{> _measure_section}} - {{> _reporting_period}} - -
- - - - - - - Patient Data - - - {{#adverse_event}} - {{> qrda_templates/adverse_event}} - {{/adverse_event}} - - {{#allergy_intolerance}} - {{> qrda_templates/allergy_intolerance}} - {{/allergy_intolerance}} - - {{#assessment_order}} - {{> qrda_templates/assessment_order}} - {{/assessment_order}} - - {{#assessment_performed}} - {{> qrda_templates/assessment_performed}} - {{/assessment_performed}} - - {{#assessment_recommended}} - {{> qrda_templates/assessment_recommended}} - {{/assessment_recommended}} - - {{#communication_performed}} - {{> qrda_templates/communication_performed}} - {{/communication_performed}} - - {{#diagnosis}} - {{> qrda_templates/diagnosis}} - {{/diagnosis}} - - {{#device_applied}} - {{> qrda_templates/device_applied}} - {{/device_applied}} - - {{#device_order}} - {{> qrda_templates/device_order}} - {{/device_order}} - - {{#device_recommended}} - {{> qrda_templates/device_recommended}} - {{/device_recommended}} - - {{#diagnostic_study_order}} - {{> qrda_templates/diagnostic_study_order}} - {{/diagnostic_study_order}} - - {{#diagnostic_study_performed}} - {{> qrda_templates/diagnostic_study_performed}} - {{/diagnostic_study_performed}} - - {{#diagnostic_study_recommended}} - {{> qrda_templates/diagnostic_study_recommended}} - {{/diagnostic_study_recommended}} - - {{#encounter_order}} - {{> qrda_templates/encounter_order}} - {{/encounter_order}} - - {{#encounter_performed}} - {{> qrda_templates/encounter_performed}} - {{/encounter_performed}} - - {{#encounter_recommended}} - {{> qrda_templates/encounter_recommended}} - {{/encounter_recommended}} - - {{#family_history}} - {{> qrda_templates/family_history}} - {{/family_history}} - - {{#immunization_administered}} - {{> qrda_templates/immunization_administered}} - {{/immunization_administered}} - - {{#immunization_order}} - {{> qrda_templates/immunization_order}} - {{/immunization_order}} - - {{#intervention_order}} - {{> qrda_templates/intervention_order}} - {{/intervention_order}} - - {{#intervention_performed}} - {{> qrda_templates/intervention_performed}} - {{/intervention_performed}} - - {{#intervention_recommended}} - {{> qrda_templates/intervention_recommended}} - {{/intervention_recommended}} - - {{#laboratory_test_order}} - {{> qrda_templates/laboratory_test_order}} - {{/laboratory_test_order}} - - {{#laboratory_test_performed}} - {{> qrda_templates/laboratory_test_performed}} - {{/laboratory_test_performed}} - - {{#laboratory_test_recommended}} - {{> qrda_templates/laboratory_test_recommended}} - {{/laboratory_test_recommended}} - - {{#medication_active}} - {{> qrda_templates/medication_active}} - {{/medication_active}} - - {{#medication_administered}} - {{> qrda_templates/medication_administered}} - {{/medication_administered}} - - {{#medication_discharge}} - {{> qrda_templates/medication_discharge}} - {{/medication_discharge}} - - {{#medication_dispensed}} - {{> qrda_templates/medication_dispensed}} - {{/medication_dispensed}} - - {{#medication_order}} - {{> qrda_templates/medication_order}} - {{/medication_order}} - - {{#patient_care_experience}} - {{> qrda_templates/patient_care_experience}} - {{/patient_care_experience}} - - {{#patient_characteristic_clinical_trial_participant}} - {{> qrda_templates/patient_characteristic_clinical_trial_participant}} - {{/patient_characteristic_clinical_trial_participant}} - - {{#patient_characteristic_expired}} - {{> qrda_templates/patient_characteristic_expired}} - {{/patient_characteristic_expired}} - - {{#physical_exam_order}} - {{> qrda_templates/physical_exam_order}} - {{/physical_exam_order}} - - {{#physical_exam_performed}} - {{> qrda_templates/physical_exam_performed}} - {{/physical_exam_performed}} - - {{#physical_exam_recommended}} - {{> qrda_templates/physical_exam_recommended}} - {{/physical_exam_recommended}} - - {{#procedure_order}} - {{> qrda_templates/procedure_order}} - {{/procedure_order}} - - {{#procedure_performed}} - {{> qrda_templates/procedure_performed}} - {{/procedure_performed}} - - {{#procedure_recommended}} - {{> qrda_templates/procedure_recommended}} - {{/procedure_recommended}} - - {{#program_participation}} - {{> qrda_templates/program_participation}} - {{/program_participation}} - - {{#provider_care_experience}} - {{> qrda_templates/provider_care_experience}} - {{/provider_care_experience}} - - {{#related_person}} - {{> qrda_templates/related_person}} - {{/related_person}} - - {{#substance_administered}} - {{> qrda_templates/medication_administered}} - {{/substance_administered}} - - {{#substance_order}} - {{> qrda_templates/medication_order}} - {{/substance_order}} - - {{#substance_recommended}} - {{> qrda_templates/substance_recommended}} - {{/substance_recommended}} - - {{#symptom}} - {{> qrda_templates/symptom}} - {{/symptom}} - - {{#patient_characteristic_payer}} - {{> qrda_templates/patient_characteristic_payer}} - {{/patient_characteristic_payer}} - -
-
-
-
-
\ No newline at end of file + + + +{{> _header}} + + + + {{> _measure_section}} + {{> _reporting_period}} + +
+ + + + + + + Patient Data + + + {{#adverse_event}} + {{> qrda_templates/adverse_event}} + {{/adverse_event}} + + {{#allergy_intolerance}} + {{> qrda_templates/allergy_intolerance}} + {{/allergy_intolerance}} + + {{#assessment_order}} + {{> qrda_templates/assessment_order}} + {{/assessment_order}} + + {{#assessment_performed}} + {{> qrda_templates/assessment_performed}} + {{/assessment_performed}} + + {{#assessment_recommended}} + {{> qrda_templates/assessment_recommended}} + {{/assessment_recommended}} + + {{#communication_performed}} + {{> qrda_templates/communication_performed}} + {{/communication_performed}} + + {{#diagnosis}} + {{> qrda_templates/diagnosis}} + {{/diagnosis}} + + {{#device_applied}} + {{> qrda_templates/device_applied}} + {{/device_applied}} + + {{#device_order}} + {{> qrda_templates/device_order}} + {{/device_order}} + + {{#device_recommended}} + {{> qrda_templates/device_recommended}} + {{/device_recommended}} + + {{#diagnostic_study_order}} + {{> qrda_templates/diagnostic_study_order}} + {{/diagnostic_study_order}} + + {{#diagnostic_study_performed}} + {{> qrda_templates/diagnostic_study_performed}} + {{/diagnostic_study_performed}} + + {{#diagnostic_study_recommended}} + {{> qrda_templates/diagnostic_study_recommended}} + {{/diagnostic_study_recommended}} + + {{#encounter_order}} + {{> qrda_templates/encounter_order}} + {{/encounter_order}} + + {{#encounter_performed}} + {{> qrda_templates/encounter_performed}} + {{/encounter_performed}} + + {{#encounter_recommended}} + {{> qrda_templates/encounter_recommended}} + {{/encounter_recommended}} + + {{#family_history}} + {{> qrda_templates/family_history}} + {{/family_history}} + + {{#immunization_administered}} + {{> qrda_templates/immunization_administered}} + {{/immunization_administered}} + + {{#immunization_order}} + {{> qrda_templates/immunization_order}} + {{/immunization_order}} + + {{#intervention_order}} + {{> qrda_templates/intervention_order}} + {{/intervention_order}} + + {{#intervention_performed}} + {{> qrda_templates/intervention_performed}} + {{/intervention_performed}} + + {{#intervention_recommended}} + {{> qrda_templates/intervention_recommended}} + {{/intervention_recommended}} + + {{#laboratory_test_order}} + {{> qrda_templates/laboratory_test_order}} + {{/laboratory_test_order}} + + {{#laboratory_test_performed}} + {{> qrda_templates/laboratory_test_performed}} + {{/laboratory_test_performed}} + + {{#laboratory_test_recommended}} + {{> qrda_templates/laboratory_test_recommended}} + {{/laboratory_test_recommended}} + + {{#medication_active}} + {{> qrda_templates/medication_active}} + {{/medication_active}} + + {{#medication_administered}} + {{> qrda_templates/medication_administered}} + {{/medication_administered}} + + {{#medication_discharge}} + {{> qrda_templates/medication_discharge}} + {{/medication_discharge}} + + {{#medication_dispensed}} + {{> qrda_templates/medication_dispensed}} + {{/medication_dispensed}} + + {{#medication_order}} + {{> qrda_templates/medication_order}} + {{/medication_order}} + + {{#patient_care_experience}} + {{> qrda_templates/patient_care_experience}} + {{/patient_care_experience}} + + {{#patient_characteristic_clinical_trial_participant}} + {{> qrda_templates/patient_characteristic_clinical_trial_participant}} + {{/patient_characteristic_clinical_trial_participant}} + + {{#patient_characteristic_expired}} + {{> qrda_templates/patient_characteristic_expired}} + {{/patient_characteristic_expired}} + + {{#physical_exam_order}} + {{> qrda_templates/physical_exam_order}} + {{/physical_exam_order}} + + {{#physical_exam_performed}} + {{> qrda_templates/physical_exam_performed}} + {{/physical_exam_performed}} + + {{#physical_exam_recommended}} + {{> qrda_templates/physical_exam_recommended}} + {{/physical_exam_recommended}} + + {{#procedure_order}} + {{> qrda_templates/procedure_order}} + {{/procedure_order}} + + {{#procedure_performed}} + {{> qrda_templates/procedure_performed}} + {{/procedure_performed}} + + {{#procedure_recommended}} + {{> qrda_templates/procedure_recommended}} + {{/procedure_recommended}} + + {{#program_participation}} + {{> qrda_templates/program_participation}} + {{/program_participation}} + + {{#provider_care_experience}} + {{> qrda_templates/provider_care_experience}} + {{/provider_care_experience}} + + {{#related_person}} + {{> qrda_templates/related_person}} + {{/related_person}} + + {{#substance_administered}} + {{> qrda_templates/medication_administered}} + {{/substance_administered}} + + {{#substance_order}} + {{> qrda_templates/medication_order}} + {{/substance_order}} + + {{#substance_recommended}} + {{> qrda_templates/substance_recommended}} + {{/substance_recommended}} + + {{#symptom}} + {{> qrda_templates/symptom}} + {{/symptom}} + + {{#patient_characteristic_payer}} + {{> qrda_templates/patient_characteristic_payer}} + {{/patient_characteristic_payer}} + +
+
+
+
+
diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_author.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_author.mustache index 254ed0bf04d0..e629e6e1dfaf 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_author.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_author.mustache @@ -1,26 +1,26 @@ - - \ No newline at end of file + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_custodian.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_custodian.mustache index 37d340e0f30c..5dd50082d4ae 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_custodian.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_custodian.mustache @@ -1,43 +1,43 @@ -{{#provider}} - - - - {{#provider_ccn}} - - {{/provider_ccn}} - {{^provider_ccn}} - - {{/provider_ccn}} - Cypress Test Deck - - {{#addresses}} - - {{{provider_street}}} - {{city}} - {{state}} - {{zip}} - {{country}} - - {{/addresses}} - - - -{{/provider}} -{{^provider}} - - - - - Cypress Test Deck - - - 202 Burlington Rd. - Bedford - MA - 01730 - US - - - - -{{/provider}} \ No newline at end of file +{{#provider}} + + + + {{#provider_ccn}} + + {{/provider_ccn}} + {{^provider_ccn}} + + {{/provider_ccn}} + Cypress Test Deck + + {{#addresses}} + + {{{provider_street}}} + {{city}} + {{state}} + {{zip}} + {{country}} + + {{/addresses}} + + + +{{/provider}} +{{^provider}} + + + + + Cypress Test Deck + + + 202 Burlington Rd. + Bedford + MA + 01730 + US + + + + +{{/provider}} diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_documentation_of_service_event.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_documentation_of_service_event.mustache index 915f0281999e..1cd969df1ecd 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_documentation_of_service_event.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_documentation_of_service_event.mustache @@ -1,88 +1,88 @@ - - - - - - - - - - - {{#provider}} - - {{#provider_npi}} - - {{/provider_npi}} - {{#provider_ccn}} - - {{/provider_ccn}} - {{#specialty}} - - {{/specialty}} - {{#addresses}} - - {{{provider_street}}} - {{city}} - {{state}} - {{zip}} - {{country}} - - {{/addresses}} - - - {{{given_name}}} - {{familyName}} - - - - {{#provider_tin}} - - {{/provider_tin}} - {{#addresses}} - - {{{provider_street}}} - {{city}} - {{state}} - {{zip}} - {{country}} - - {{/addresses}} - - - {{/provider}} - {{^provider}} - - - - - - 16432 Jayme Viaduct Manor - Clairland - MS - 38796 - US - - - - Daryl - Carroll - - - - - - 16432 Jayme Viaduct Manor - Clairland - MS - 38796 - US - - - - {{/provider}} - - - \ No newline at end of file + + + + + + + + + + + {{#provider}} + + {{#provider_npi}} + + {{/provider_npi}} + {{#provider_ccn}} + + {{/provider_ccn}} + {{#specialty}} + + {{/specialty}} + {{#addresses}} + + {{{provider_street}}} + {{city}} + {{state}} + {{zip}} + {{country}} + + {{/addresses}} + + + {{{given_name}}} + {{familyName}} + + + + {{#provider_tin}} + + {{/provider_tin}} + {{#addresses}} + + {{{provider_street}}} + {{city}} + {{state}} + {{zip}} + {{country}} + + {{/addresses}} + + + {{/provider}} + {{^provider}} + + + + + + 16432 Jayme Viaduct Manor + Clairland + MS + 38796 + US + + + + Daryl + Carroll + + + + + + 16432 Jayme Viaduct Manor + Clairland + MS + 38796 + US + + + + {{/provider}} + + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_information_recipient.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_information_recipient.mustache index 1607d30953c6..a8d865817841 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_information_recipient.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_information_recipient.mustache @@ -1,7 +1,7 @@ -{{#submission_program}} - - - - - -{{/submission_program}} \ No newline at end of file +{{#submission_program}} + + + + + +{{/submission_program}} diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_legal_authenticator.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_legal_authenticator.mustache index 6fd0d831f206..27373e3df2d6 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_legal_authenticator.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_legal_authenticator.mustache @@ -1,25 +1,25 @@ - - \ No newline at end of file + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_participant.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_participant.mustache index b653ed6433a3..bc7744db7883 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_participant.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_participant.mustache @@ -1,7 +1,7 @@ - - - - - - \ No newline at end of file + + + + + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_record_target.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_record_target.mustache index 39cb3780df1d..07ed5b8027c9 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_record_target.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_header/_record_target.mustache @@ -1,59 +1,59 @@ - - - - {{#patient_addresses}} - - {{#street}} - {{.}} - {{/street}} - {{city}} - {{state}} - {{zip}} - {{country}} - - {{/patient_addresses}} - {{#patient_telecoms}} - - {{/patient_telecoms}} - - {{#patient}} - - {{given_name}} - {{familyName}} - - {{/patient}} - {{#patient_characteristic_sex}} - {{#dataElementCodes}} - _code}}/> - {{/dataElementCodes}} - {{/patient_characteristic_sex}} - {{^patient_characteristic_sex}} - - {{/patient_characteristic_sex}} - {{#patient_characteristic_birthdate}} - {{{birth_date_time}}} - {{/patient_characteristic_birthdate}} - {{#patient_characteristic_race}} - {{#dataElementCodes}} - _code}}/> - {{/dataElementCodes}} - {{/patient_characteristic_race}} - {{^patient_characteristic_race}} - - {{/patient_characteristic_race}} - {{#patient_characteristic_ethnicity}} - {{#dataElementCodes}} - _code}}/> - {{/dataElementCodes}} - {{/patient_characteristic_ethnicity}} - {{^patient_characteristic_ethnicity}} - - {{/patient_characteristic_ethnicity}} - - - - - - - - + + + + {{#patient_addresses}} + + {{#street}} + {{.}} + {{/street}} + {{city}} + {{state}} + {{zip}} + {{country}} + + {{/patient_addresses}} + {{#patient_telecoms}} + + {{/patient_telecoms}} + + {{#patient}} + + {{given_name}} + {{familyName}} + + {{/patient}} + {{#patient_characteristic_sex}} + {{#dataElementCodes}} + _code}}/> + {{/dataElementCodes}} + {{/patient_characteristic_sex}} + {{^patient_characteristic_sex}} + + {{/patient_characteristic_sex}} + {{#patient_characteristic_birthdate}} + {{{birth_date_time}}} + {{/patient_characteristic_birthdate}} + {{#patient_characteristic_race}} + {{#dataElementCodes}} + _code}}/> + {{/dataElementCodes}} + {{/patient_characteristic_race}} + {{^patient_characteristic_race}} + + {{/patient_characteristic_race}} + {{#patient_characteristic_ethnicity}} + {{#dataElementCodes}} + _code}}/> + {{/dataElementCodes}} + {{/patient_characteristic_ethnicity}} + {{^patient_characteristic_ethnicity}} + + {{/patient_characteristic_ethnicity}} + + + + + + + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/adverse_event.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/adverse_event.mustache index 136da037c5c5..8685c6d69496 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/adverse_event.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/adverse_event.mustache @@ -1,46 +1,46 @@ - - - - - - - - {{#relevantDatetime}} - - {{{relevant_date_time_value}}} - {{/relevantDatetime}} - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#facilityLocation}} - - {{> qrda_templates/template_partials/_facility_location}} - {{/facilityLocation}} - {{#recorder}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/recorder}} - - - - - - - - {{> qrda_templates/template_partials/_data_element_codes_as_values}} - - - {{#type}} - - {{> qrda_templates/template_partials/_reaction_observation}} - {{/type}} - {{#severity}} - - {{> qrda_templates/template_partials/_severity}} - {{/severity}} - - \ No newline at end of file + + + + + + + + {{#relevantDatetime}} + + {{{relevant_date_time_value}}} + {{/relevantDatetime}} + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#facilityLocation}} + + {{> qrda_templates/template_partials/_facility_location}} + {{/facilityLocation}} + {{#recorder}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/recorder}} + + + + + + + + {{> qrda_templates/template_partials/_data_element_codes_as_values}} + + + {{#type}} + + {{> qrda_templates/template_partials/_reaction_observation}} + {{/type}} + {{#severity}} + + {{> qrda_templates/template_partials/_severity}} + {{/severity}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/allergy_intolerance.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/allergy_intolerance.mustache index 926527a50e3e..0d7a738855c3 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/allergy_intolerance.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/allergy_intolerance.mustache @@ -1,42 +1,42 @@ - - - - - - - - - - {{#prevalencePeriod}} - {{{prevalence_period}}} - {{/prevalencePeriod}} - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - - - - - {{> _codes}} - {{description}} - - - - {{#recorder}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/recorder}} - {{#type}} - - {{> qrda_templates/template_partials/_reaction_observation}} - {{/type}} - {{#severity}} - - {{> qrda_templates/template_partials/_severity}} - {{/severity}} - - \ No newline at end of file + + + + + + + + + + {{#prevalencePeriod}} + {{{prevalence_period}}} + {{/prevalencePeriod}} + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + + + + + {{> _codes}} + {{description}} + + + + {{#recorder}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/recorder}} + {{#type}} + + {{> qrda_templates/template_partials/_reaction_observation}} + {{/type}} + {{#severity}} + + {{> qrda_templates/template_partials/_severity}} + {{/severity}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/assessment_order.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/assessment_order.mustache index 5220da0dd67e..75c16a64e287 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/assessment_order.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/assessment_order.mustache @@ -1,31 +1,31 @@ - - - - - - - - - {{> _codes}} - {{description}} - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - \ No newline at end of file + + + + + + + + + {{> _codes}} + {{description}} + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/assessment_performed.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/assessment_performed.mustache index defe9a829921..188acb08c412 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/assessment_performed.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/assessment_performed.mustache @@ -1,45 +1,45 @@ - - - - - - {{> _codes}} - {{description}} - - {{{relevant_date_period_or_null_flavor}}} - {{#result}} - - {{{result_value}}} - {{/result}} - {{#method}} - - {{> qrda_templates/template_partials/_method}} - {{/method}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#performer}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/performer}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - {{#components}} - - {{> qrda_templates/template_partials/_component}} - {{/components}} - {{#relatedTo}} - - {{> qrda_templates/template_partials/_related_to}} - {{/relatedTo}} - - \ No newline at end of file + + + + + + {{> _codes}} + {{description}} + + {{{relevant_date_period_or_null_flavor}}} + {{#result}} + + {{{result_value}}} + {{/result}} + {{#method}} + + {{> qrda_templates/template_partials/_method}} + {{/method}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#performer}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/performer}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + {{#components}} + + {{> qrda_templates/template_partials/_component}} + {{/components}} + {{#relatedTo}} + + {{> qrda_templates/template_partials/_related_to}} + {{/relatedTo}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/assessment_recommended.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/assessment_recommended.mustache index 15f0a4dec12d..495ca973b387 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/assessment_recommended.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/assessment_recommended.mustache @@ -1,31 +1,31 @@ - - - - - - - - - {{> _codes}} - {{description}} - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - \ No newline at end of file + + + + + + + + + {{> _codes}} + {{description}} + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/communication_performed.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/communication_performed.mustache index 24f0d9060de6..b9d0cfbdb81f 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/communication_performed.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/communication_performed.mustache @@ -1,62 +1,62 @@ - - - - - {{#category}} - - _code}}/> - {{/category}} - {{^category}} - - - {{/category}} - - - - {{{sent_date_time}}} - - {{{received_date_time}}} - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#recipient}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/recipient}} - {{#sender}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/sender}} - {{#medium}} - - - - _code}}/> - - - {{/medium}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - - - - - - {{> qrda_templates/template_partials/_data_element_codes_as_values}} - - - {{#relatedTo}} - - {{> qrda_templates/template_partials/_related_to}} - {{/relatedTo}} - - \ No newline at end of file + + + + + {{#category}} + + _code}}/> + {{/category}} + {{^category}} + + + {{/category}} + + + + {{{sent_date_time}}} + + {{{received_date_time}}} + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#recipient}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/recipient}} + {{#sender}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/sender}} + {{#medium}} + + + + _code}}/> + + + {{/medium}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + + + + + + {{> qrda_templates/template_partials/_data_element_codes_as_values}} + + + {{#relatedTo}} + + {{> qrda_templates/template_partials/_related_to}} + {{/relatedTo}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/device_applied.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/device_applied.mustache index 1dec69ca6512..71629476896f 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/device_applied.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/device_applied.mustache @@ -41,4 +41,3 @@ {{/negationRationale}} - diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/device_order.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/device_order.mustache index 4137b8db52c7..09afdf360df3 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/device_order.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/device_order.mustache @@ -1,43 +1,43 @@ - - - - - - - - - - - - {{description}} - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - - - - - {{> _codes}} - - - - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - - - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - + + + + + + + + + + + + {{description}} + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + + + + + {{> _codes}} + + + + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + + + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/device_recommended.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/device_recommended.mustache index f0b86a490dd3..4048fdbb69a4 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/device_recommended.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/device_recommended.mustache @@ -1,43 +1,43 @@ - - - - - - - - - - - - {{description}} - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - - - - - {{> _codes}} - - - - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - - - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - + + + + + + + + + + + + {{description}} + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + + + + + {{> _codes}} + + + + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + + + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnosis.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnosis.mustache index 9b2423deecc1..98f59473c3d7 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnosis.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnosis.mustache @@ -1,55 +1,55 @@ - - - - - - - - - {{#prevalencePeriod}} - {{#completed_prevalence_period}} - - {{/completed_prevalence_period}} - {{^completed_prevalence_period}} - - {{/completed_prevalence_period}} - {{{prevalence_period}}} - {{/prevalencePeriod}} - - - - - - - - - - - - {{#prevalencePeriod}} - {{{prevalence_period}}} - {{/prevalencePeriod}} - - {{> qrda_templates/template_partials/_data_element_codes_as_values}} - {{#anatomicalLocationSite}} - - {{> qrda_templates/template_partials/_anatomical_location_site}} - {{/anatomicalLocationSite}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#recorder}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/recorder}} - {{#severity}} - - {{> qrda_templates/template_partials/_severity}} - {{/severity}} - - - - + + + + + + + + + {{#prevalencePeriod}} + {{#completed_prevalence_period}} + + {{/completed_prevalence_period}} + {{^completed_prevalence_period}} + + {{/completed_prevalence_period}} + {{{prevalence_period}}} + {{/prevalencePeriod}} + + + + + + + + + + + + {{#prevalencePeriod}} + {{{prevalence_period}}} + {{/prevalencePeriod}} + + {{> qrda_templates/template_partials/_data_element_codes_as_values}} + {{#anatomicalLocationSite}} + + {{> qrda_templates/template_partials/_anatomical_location_site}} + {{/anatomicalLocationSite}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#recorder}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/recorder}} + {{#severity}} + + {{> qrda_templates/template_partials/_severity}} + {{/severity}} + + + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnostic_study_order.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnostic_study_order.mustache index 5d8405bdf53d..3b561bd020e7 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnostic_study_order.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnostic_study_order.mustache @@ -1,31 +1,31 @@ - - - - - - - - {{> _codes}} - {{description}} - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - + + + + + + + + {{> _codes}} + {{description}} + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnostic_study_performed.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnostic_study_performed.mustache index 9b4639e006d4..cee7e7ae6a54 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnostic_study_performed.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnostic_study_performed.mustache @@ -1,53 +1,53 @@ - - - - - - - - {{> _codes}} - {{description}} - - {{{relevant_date_period_or_null_flavor}}} - - {{#method}} - - {{> qrda_templates/template_partials/_method}} - {{/method}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#facilityLocation}} - - {{> qrda_templates/template_partials/_facility_location}} - {{/facilityLocation}} - {{#performer}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/performer}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - {{#status}} - - {{> qrda_templates/template_partials/_status}} - {{/status}} - {{#result}} - - {{> qrda_templates/template_partials/_results}} - {{/result}} - {{#components}} - - {{> qrda_templates/template_partials/_component}} - {{/components}} - - \ No newline at end of file + + + + + + + + {{> _codes}} + {{description}} + + {{{relevant_date_period_or_null_flavor}}} + + {{#method}} + + {{> qrda_templates/template_partials/_method}} + {{/method}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#facilityLocation}} + + {{> qrda_templates/template_partials/_facility_location}} + {{/facilityLocation}} + {{#performer}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/performer}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + {{#status}} + + {{> qrda_templates/template_partials/_status}} + {{/status}} + {{#result}} + + {{> qrda_templates/template_partials/_results}} + {{/result}} + {{#components}} + + {{> qrda_templates/template_partials/_component}} + {{/components}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnostic_study_recommended.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnostic_study_recommended.mustache index 1e2a2c7ae769..85b5cd60d8df 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnostic_study_recommended.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/diagnostic_study_recommended.mustache @@ -1,27 +1,27 @@ - - - - - - - - {{> _codes}} - {{description}} - - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - \ No newline at end of file + + + + + + + + {{> _codes}} + {{description}} + + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/encounter_order.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/encounter_order.mustache index 11c63421a99f..b7abc70504db 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/encounter_order.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/encounter_order.mustache @@ -1,44 +1,44 @@ - - - - - - - - - - - - - {{> _codes}} - {{description}} - - {{#priority}} - _code}}/> - {{/priority}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#facilityLocation}} - - {{> qrda_templates/template_partials/_facility_location}} - {{/facilityLocation}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - - - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - \ No newline at end of file + + + + + + + + + + + + + {{> _codes}} + {{description}} + + {{#priority}} + _code}}/> + {{/priority}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#facilityLocation}} + + {{> qrda_templates/template_partials/_facility_location}} + {{/facilityLocation}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + + + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/encounter_performed.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/encounter_performed.mustache index 3100752eeacb..ea699230305d 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/encounter_performed.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/encounter_performed.mustache @@ -1,54 +1,54 @@ - - - - - - - - - - - - - - {{> _codes}} - {{description}} - - {{#relevantPeriod}} - - {{{relevant_period}}} - {{/relevantPeriod}} - {{#dischargeDisposition}} - - _code}}/> - {{/dischargeDisposition}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#facilityLocations}} - - {{> qrda_templates/template_partials/_facility_location}} - {{/facilityLocations}} - {{#admissionSource}} - - {{> qrda_templates/template_partials/_admission_source}} - {{/admissionSource}} - {{#participant}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/participant}} - {{#diagnoses}} - - {{> qrda_templates/template_partials/_encounter_diagnosis_qdm}} - {{/diagnoses}} - - - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - \ No newline at end of file + + + + + + + + + + + + + + {{> _codes}} + {{description}} + + {{#relevantPeriod}} + + {{{relevant_period}}} + {{/relevantPeriod}} + {{#dischargeDisposition}} + + _code}}/> + {{/dischargeDisposition}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#facilityLocations}} + + {{> qrda_templates/template_partials/_facility_location}} + {{/facilityLocations}} + {{#admissionSource}} + + {{> qrda_templates/template_partials/_admission_source}} + {{/admissionSource}} + {{#participant}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/participant}} + {{#diagnoses}} + + {{> qrda_templates/template_partials/_encounter_diagnosis_qdm}} + {{/diagnoses}} + + + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/encounter_recommended.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/encounter_recommended.mustache index 50ad5ab5d57d..603d40837393 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/encounter_recommended.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/encounter_recommended.mustache @@ -1,42 +1,42 @@ - - - - - - - - - - - - - - {{> _codes}} - {{description}} - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#facilityLocation}} - - {{> qrda_templates/template_partials/_facility_location}} - {{/facilityLocation}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - - - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - \ No newline at end of file + + + + + + + + + + + + + + {{> _codes}} + {{description}} + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#facilityLocation}} + + {{> qrda_templates/template_partials/_facility_location}} + {{/facilityLocation}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + + + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/family_history.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/family_history.mustache index 7cb130bcf076..f6f15545989a 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/family_history.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/family_history.mustache @@ -1,43 +1,43 @@ - - - - - - - - - {{#relationship}} - - - - _code}}/> - - - {{/relationship}} - - - - - - - - - - - - - {{> qrda_templates/template_partials/_data_element_codes_as_values}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#recorder}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/recorder}} - - - - + + + + + + + + + {{#relationship}} + + + + _code}}/> + + + {{/relationship}} + + + + + + + + + + + + + {{> qrda_templates/template_partials/_data_element_codes_as_values}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#recorder}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/recorder}} + + + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/immunization_administered.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/immunization_administered.mustache index 850b2cbe90c2..d882f0fc4277 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/immunization_administered.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/immunization_administered.mustache @@ -1,50 +1,50 @@ - - {{#negated}} - - {{/negated}} - {{^negated}} - - {{/negated}} - - - - - - - - {{#relevantDatetime}} - - {{{relevant_date_time_value}}} - {{/relevantDatetime}} - {{> qrda_templates/template_partials/_immunization_details}} - - - - - - - {{> _codes}} - 1 - - - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#performer}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/performer}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - \ No newline at end of file + + {{#negated}} + + {{/negated}} + {{^negated}} + + {{/negated}} + + + + + + + + {{#relevantDatetime}} + + {{{relevant_date_time_value}}} + {{/relevantDatetime}} + {{> qrda_templates/template_partials/_immunization_details}} + + + + + + + {{> _codes}} + 1 + + + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#performer}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/performer}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/immunization_order.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/immunization_order.mustache index 92c62f35e2a3..328b22d1b91f 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/immunization_order.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/immunization_order.mustache @@ -1,52 +1,52 @@ - - - - - - - - {{description}} - - {{#activeDatetime}} - - {{{active_date_time}}} - {{/activeDatetime}} - {{> qrda_templates/template_partials/_immunization_details}} - - - - - - - - {{> _codes}} - 1 - - - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - {{#supply}} - - - {{> qrda_templates/template_partials/_immunization_supply_request}} - - {{/supply}} - - \ No newline at end of file + + + + + + + + {{description}} + + {{#activeDatetime}} + + {{{active_date_time}}} + {{/activeDatetime}} + {{> qrda_templates/template_partials/_immunization_details}} + + + + + + + + {{> _codes}} + 1 + + + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + {{#supply}} + + + {{> qrda_templates/template_partials/_immunization_supply_request}} + + {{/supply}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/intervention_order.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/intervention_order.mustache index c43cbcf4ac31..189f385e61f0 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/intervention_order.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/intervention_order.mustache @@ -1,30 +1,30 @@ - - - - - - - - {{> _codes}} - {{description}} - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - \ No newline at end of file + + + + + + + + {{> _codes}} + {{description}} + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/intervention_performed.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/intervention_performed.mustache index 28bff191ed2c..b4a15727180e 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/intervention_performed.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/intervention_performed.mustache @@ -1,39 +1,39 @@ - - - - - - - - {{> _codes}} - {{description}} - - {{{relevant_date_period_or_null_flavor}}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#performer}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/performer}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - {{#result}} - - {{> qrda_templates/template_partials/_results}} - {{/result}} - {{#status}} - - {{> qrda_templates/template_partials/_status}} - {{/status}} - - + + + + + + + + {{> _codes}} + {{description}} + + {{{relevant_date_period_or_null_flavor}}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#performer}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/performer}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + {{#result}} + + {{> qrda_templates/template_partials/_results}} + {{/result}} + {{#status}} + + {{> qrda_templates/template_partials/_status}} + {{/status}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/intervention_recommended.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/intervention_recommended.mustache index 4babf484e6de..9485aee3f5cd 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/intervention_recommended.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/intervention_recommended.mustache @@ -1,31 +1,31 @@ - - - - - - - - - {{> _codes}} - {{description}} - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - + + + + + + + + + {{> _codes}} + {{description}} + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/laboratory_test_order.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/laboratory_test_order.mustache index 72b19d31144a..065de57ec964 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/laboratory_test_order.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/laboratory_test_order.mustache @@ -1,30 +1,30 @@ - - - - - - - - {{> _codes}} - {{description}} - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - + + + + + + + + {{> _codes}} + {{description}} + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/laboratory_test_performed.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/laboratory_test_performed.mustache index 3f05b45b3877..4e0a98ac662d 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/laboratory_test_performed.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/laboratory_test_performed.mustache @@ -1,49 +1,49 @@ - - - - - - {{> _codes}} - {{description}} - - {{{relevant_date_period_or_null_flavor}}} - {{#method}} - - {{> qrda_templates/template_partials/_method}} - {{/method}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#performer}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/performer}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - {{#result}} - - {{> qrda_templates/template_partials/_results}} - {{/result}} - {{#status}} - - {{> qrda_templates/template_partials/_status}} - {{/status}} - {{#components}} - - {{> qrda_templates/template_partials/_component}} - {{/components}} - {{#encounter_id}} - - {{> qrda_templates/template_partials/_related_to}} - {{/encounter_id}} - - \ No newline at end of file + + + + + + {{> _codes}} + {{description}} + + {{{relevant_date_period_or_null_flavor}}} + {{#method}} + + {{> qrda_templates/template_partials/_method}} + {{/method}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#performer}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/performer}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + {{#result}} + + {{> qrda_templates/template_partials/_results}} + {{/result}} + {{#status}} + + {{> qrda_templates/template_partials/_status}} + {{/status}} + {{#components}} + + {{> qrda_templates/template_partials/_component}} + {{/components}} + {{#encounter_id}} + + {{> qrda_templates/template_partials/_related_to}} + {{/encounter_id}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/laboratory_test_recommended.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/laboratory_test_recommended.mustache index 3ff8807a0c0f..3ea9523ab9ff 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/laboratory_test_recommended.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/laboratory_test_recommended.mustache @@ -1,31 +1,31 @@ - - - - - - - - - {{> _codes}} - {{description}} - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - \ No newline at end of file + + + + + + + + + {{> _codes}} + {{description}} + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_active.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_active.mustache index b151dc46dcdc..5c2282dc0a95 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_active.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_active.mustache @@ -1,42 +1,42 @@ - - - - - - - - - {{description}} - - {{#relevantDatetime}} - - {{{relevant_date_time_value}}} - {{/relevantDatetime}} - {{^relevantDatetime}} - {{#relevantPeriod}} - - {{{medication_duration_effective_time}}} - {{/relevantPeriod}} - {{/relevantDatetime}} - {{> qrda_templates/template_partials/_medication_details}} - - - - - - - {{> _codes}} - - - Medication Factory Inc. - - - - {{#recorder}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/recorder}} - - + + + + + + + + + {{description}} + + {{#relevantDatetime}} + + {{{relevant_date_time_value}}} + {{/relevantDatetime}} + {{^relevantDatetime}} + {{#relevantPeriod}} + + {{{medication_duration_effective_time}}} + {{/relevantPeriod}} + {{/relevantDatetime}} + {{> qrda_templates/template_partials/_medication_details}} + + + + + + + {{> _codes}} + + + Medication Factory Inc. + + + + {{#recorder}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/recorder}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_administered.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_administered.mustache index 2bfb6c5bc946..c57d6319ce02 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_administered.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_administered.mustache @@ -1,51 +1,51 @@ - - - - - - - - - - {{#relevantDatetime}} - - {{{relevant_date_time_value}}} - {{/relevantDatetime}} - {{^relevantDatetime}} - {{#relevantPeriod}} - - {{{medication_duration_effective_time}}} - {{/relevantPeriod}} - {{/relevantDatetime}} - {{> qrda_templates/template_partials/_medication_details}} - - - - - - - - {{> _codes}} - - - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#performer}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/performer}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - \ No newline at end of file + + + + + + + + + + {{#relevantDatetime}} + + {{{relevant_date_time_value}}} + {{/relevantDatetime}} + {{^relevantDatetime}} + {{#relevantPeriod}} + + {{{medication_duration_effective_time}}} + {{/relevantPeriod}} + {{/relevantDatetime}} + {{> qrda_templates/template_partials/_medication_details}} + + + + + + + + {{> _codes}} + + + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#performer}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/performer}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_discharge.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_discharge.mustache index cf7cc5b17eaa..d8aa163d7164 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_discharge.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_discharge.mustache @@ -1,71 +1,71 @@ - - - - - - - {{#prescriber}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/prescriber}} - {{#recorder}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/recorder}} - - - - - - - - {{description}} - - {{#authorDatetime}} - - {{{author_effective_time}}} - {{/authorDatetime}} - {{> qrda_templates/template_partials/_medication_details}} - - - - - - - {{> _codes}} - - - Medication Factory Inc. - - - - {{#authorDatetime}} - {{> qrda_templates/template_partials/_author_participation}} - {{/authorDatetime}} - - - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - {{#daysSupplied}} - - {{> qrda_templates/template_partials/_days_supplied}} - - {{/daysSupplied}} - {{#supply}} - - - {{> qrda_templates/template_partials/_medication_supply_request}} - - {{/supply}} - - + + + + + + + {{#prescriber}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/prescriber}} + {{#recorder}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/recorder}} + + + + + + + + {{description}} + + {{#authorDatetime}} + + {{{author_effective_time}}} + {{/authorDatetime}} + {{> qrda_templates/template_partials/_medication_details}} + + + + + + + {{> _codes}} + + + Medication Factory Inc. + + + + {{#authorDatetime}} + {{> qrda_templates/template_partials/_author_participation}} + {{/authorDatetime}} + + + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + {{#daysSupplied}} + + {{> qrda_templates/template_partials/_days_supplied}} + + {{/daysSupplied}} + {{#supply}} + + + {{> qrda_templates/template_partials/_medication_supply_request}} + + {{/supply}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_dispensed.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_dispensed.mustache index 1960707495e1..208ed1d2dfb6 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_dispensed.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_dispensed.mustache @@ -1,83 +1,83 @@ - - - - - - - - - - - - - - {{description}} - - {{#relevantDatetime}} - - {{{relevant_date_time_value}}} - {{/relevantDatetime}} - {{^relevantDatetime}} - {{#relevantPeriod}} - - {{{medication_duration_effective_time}}} - {{/relevantPeriod}} - {{^relevantPeriod}} - - {{/relevantPeriod}} - {{/relevantDatetime}} - - - - - - - {{> _codes}} - - - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#dispenser}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/dispenser}} - {{#prescriber}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/prescriber}} - {{#daysSupplied}} - - {{> qrda_templates/template_partials/_days_supplied}} - - {{/daysSupplied}} - - - {{> qrda_templates/template_partials/_medication_details}} - - - - - - - - {{#supply}} - - - {{> qrda_templates/template_partials/_medication_supply_request}} - - {{/supply}} - - - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - \ No newline at end of file + + + + + + + + + + + + + + {{description}} + + {{#relevantDatetime}} + + {{{relevant_date_time_value}}} + {{/relevantDatetime}} + {{^relevantDatetime}} + {{#relevantPeriod}} + + {{{medication_duration_effective_time}}} + {{/relevantPeriod}} + {{^relevantPeriod}} + + {{/relevantPeriod}} + {{/relevantDatetime}} + + + + + + + {{> _codes}} + + + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#dispenser}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/dispenser}} + {{#prescriber}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/prescriber}} + {{#daysSupplied}} + + {{> qrda_templates/template_partials/_days_supplied}} + + {{/daysSupplied}} + + + {{> qrda_templates/template_partials/_medication_details}} + + + + + + + + {{#supply}} + + + {{> qrda_templates/template_partials/_medication_supply_request}} + + {{/supply}} + + + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_order.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_order.mustache index 32b4d47cfe9f..cdafdb90c1cf 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_order.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/medication_order.mustache @@ -1,70 +1,70 @@ - - - - - - - - {{description}} - - {{#relevantPeriod}} - - {{{medication_duration_effective_time}}} - {{/relevantPeriod}} - {{^relevantPeriod}} - {{#authorDatetime}} - - {{{medication_duration_author_effective_time}}} - {{/authorDatetime}} - {{/relevantPeriod}} - {{> qrda_templates/template_partials/_medication_details}} - - - - - - - - {{> _codes}} - - - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#setting}} - - - - _code}}/> - - - {{/setting}} - {{#prescriber}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/prescriber}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - {{#daysSupplied}} - - {{> qrda_templates/template_partials/_days_supplied}} - - {{/daysSupplied}} - {{#supply}} - - - {{> qrda_templates/template_partials/_medication_supply_request}} - - {{/supply}} - - \ No newline at end of file + + + + + + + + {{description}} + + {{#relevantPeriod}} + + {{{medication_duration_effective_time}}} + {{/relevantPeriod}} + {{^relevantPeriod}} + {{#authorDatetime}} + + {{{medication_duration_author_effective_time}}} + {{/authorDatetime}} + {{/relevantPeriod}} + {{> qrda_templates/template_partials/_medication_details}} + + + + + + + + {{> _codes}} + + + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#setting}} + + + + _code}}/> + + + {{/setting}} + {{#prescriber}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/prescriber}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + {{#daysSupplied}} + + {{> qrda_templates/template_partials/_days_supplied}} + + {{/daysSupplied}} + {{#supply}} + + + {{> qrda_templates/template_partials/_medication_supply_request}} + + {{/supply}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_care_experience.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_care_experience.mustache index de70d8d0059d..cd4127874a43 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_care_experience.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_care_experience.mustache @@ -1,20 +1,20 @@ - - - - - - - - {{> qrda_templates/template_partials/_data_element_codes_as_values}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#recorder}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/recorder}} - - + + + + + + + + {{> qrda_templates/template_partials/_data_element_codes_as_values}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#recorder}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/recorder}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_characteristic_clinical_trial_participant.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_characteristic_clinical_trial_participant.mustache index a1e3d83436e3..dcab0dc57a7b 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_characteristic_clinical_trial_participant.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_characteristic_clinical_trial_participant.mustache @@ -1,18 +1,18 @@ - - - - - - - - {{#relevantPeriod}} - - {{{relevant_period}}} - {{/relevantPeriod}} - {{> qrda_templates/template_partials/_data_element_codes_as_values}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - - + + + + + + + + {{#relevantPeriod}} + + {{{relevant_period}}} + {{/relevantPeriod}} + {{> qrda_templates/template_partials/_data_element_codes_as_values}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_characteristic_expired.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_characteristic_expired.mustache index b6c2c73c16ee..5dfecf53ae02 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_characteristic_expired.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_characteristic_expired.mustache @@ -1,32 +1,32 @@ - - - - - - - - - - {{#expiredDatetime}} - - {{{expired_date_time}}} - {{/expiredDatetime}} - - {{#cause}} - - - - - - - - - - - {{{expired_date_time}}} - _code}} xsi:type="CD"/> - - - {{/cause}} - - + + + + + + + + + + {{#expiredDatetime}} + + {{{expired_date_time}}} + {{/expiredDatetime}} + + {{#cause}} + + + + + + + + + + + {{{expired_date_time}}} + _code}} xsi:type="CD"/> + + + {{/cause}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_characteristic_payer.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_characteristic_payer.mustache index 8d4581ad196d..e593c1bc18cf 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_characteristic_payer.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/patient_characteristic_payer.mustache @@ -1,14 +1,14 @@ - - - - - - - - {{#relevantPeriod}} - - {{{relevant_period}}} - {{/relevantPeriod}} - {{> qrda_templates/template_partials/_data_element_codes_as_values}} - - \ No newline at end of file + + + + + + + + {{#relevantPeriod}} + + {{{relevant_period}}} + {{/relevantPeriod}} + {{> qrda_templates/template_partials/_data_element_codes_as_values}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/physical_exam_order.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/physical_exam_order.mustache index c85d58e9cd44..29a204c4b7f4 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/physical_exam_order.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/physical_exam_order.mustache @@ -1,36 +1,36 @@ - - - - - - - - - {{description}} - - - {{> qrda_templates/template_partials/_data_element_codes_as_values}} - {{#anatomicalLocationSite}} - - {{> qrda_templates/template_partials/_anatomical_location_site}} - {{/anatomicalLocationSite}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - + + + + + + + + + {{description}} + + + {{> qrda_templates/template_partials/_data_element_codes_as_values}} + {{#anatomicalLocationSite}} + + {{> qrda_templates/template_partials/_anatomical_location_site}} + {{/anatomicalLocationSite}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/physical_exam_performed.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/physical_exam_performed.mustache index 67d5dda523ac..d5d46c792c1f 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/physical_exam_performed.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/physical_exam_performed.mustache @@ -1,56 +1,56 @@ - - - - - - - - - {{> _codes}} - {{description}} - - {{{relevant_date_period_or_null_flavor}}} - {{#result}} - - {{{result_value}}} - {{/result}} - {{^result}} - - - {{/result}} - {{#method}} - - {{> qrda_templates/template_partials/_method}} - {{/method}} - {{#anatomicalLocationSite}} - - {{> qrda_templates/template_partials/_anatomical_location_site}} - {{/anatomicalLocationSite}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#performer}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/performer}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - {{#components}} - - {{> qrda_templates/template_partials/_component}} - {{/components}} - {{#encounter_id}} - - {{> qrda_templates/template_partials/_related_to}} - {{/encounter_id}} - - + + + + + + + + + {{> _codes}} + {{description}} + + {{{relevant_date_period_or_null_flavor}}} + {{#result}} + + {{{result_value}}} + {{/result}} + {{^result}} + + + {{/result}} + {{#method}} + + {{> qrda_templates/template_partials/_method}} + {{/method}} + {{#anatomicalLocationSite}} + + {{> qrda_templates/template_partials/_anatomical_location_site}} + {{/anatomicalLocationSite}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#performer}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/performer}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + {{#components}} + + {{> qrda_templates/template_partials/_component}} + {{/components}} + {{#encounter_id}} + + {{> qrda_templates/template_partials/_related_to}} + {{/encounter_id}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/physical_exam_recommended.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/physical_exam_recommended.mustache index 618dcbba5e3b..a12ca784f5c9 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/physical_exam_recommended.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/physical_exam_recommended.mustache @@ -1,36 +1,36 @@ - - - - - - - - - {{description}} - - - {{> qrda_templates/template_partials/_data_element_codes_as_values}} - {{#anatomicalLocationSite}} - - {{> qrda_templates/template_partials/_anatomical_location_site}} - {{/anatomicalLocationSite}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - + + + + + + + + + {{description}} + + + {{> qrda_templates/template_partials/_data_element_codes_as_values}} + {{#anatomicalLocationSite}} + + {{> qrda_templates/template_partials/_anatomical_location_site}} + {{/anatomicalLocationSite}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/procedure_order.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/procedure_order.mustache index 1c78624ba979..4c290b877c9e 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/procedure_order.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/procedure_order.mustache @@ -1,38 +1,38 @@ - - - - - - - - {{> _codes}} - {{description}} - - {{#anatomicalLocationSite}} - - {{> qrda_templates/template_partials/_anatomical_location_site}} - {{/anatomicalLocationSite}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - {{#rank}} - - {{> qrda_templates/template_partials/_rank}} - {{/rank}} - - + + + + + + + + {{> _codes}} + {{description}} + + {{#anatomicalLocationSite}} + + {{> qrda_templates/template_partials/_anatomical_location_site}} + {{/anatomicalLocationSite}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + {{#rank}} + + {{> qrda_templates/template_partials/_rank}} + {{/rank}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/procedure_performed.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/procedure_performed.mustache index 9cdbe021d4f5..de0c9863597b 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/procedure_performed.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/procedure_performed.mustache @@ -1,67 +1,66 @@ - - - - - - - - {{> _codes}} - {{description}} - - {{{relevant_date_period_or_null_flavor}}} - {{#method}} - - {{> qrda_templates/template_partials/_method}} - {{/method}} - {{#anatomicalLocationSite}} - - {{> qrda_templates/template_partials/_anatomical_location_site}} - {{/anatomicalLocationSite}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#performer}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/performer}} - {{#rank}} - - {{> qrda_templates/template_partials/_rank}} - {{/rank}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - {{#incisionDatetime}} - - - - - - - {{{incision_datetime}}} - - - {{/incisionDatetime}} - {{#result}} - - {{> qrda_templates/template_partials/_results}} - {{/result}} - {{#status}} - - {{> qrda_templates/template_partials/_status}} - {{/status}} - {{#components}} - - {{> qrda_templates/template_partials/_component}} - {{/components}} - - - + + + + + + + + {{> _codes}} + {{description}} + + {{{relevant_date_period_or_null_flavor}}} + {{#method}} + + {{> qrda_templates/template_partials/_method}} + {{/method}} + {{#anatomicalLocationSite}} + + {{> qrda_templates/template_partials/_anatomical_location_site}} + {{/anatomicalLocationSite}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#performer}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/performer}} + {{#rank}} + + {{> qrda_templates/template_partials/_rank}} + {{/rank}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + {{#incisionDatetime}} + + + + + + + {{{incision_datetime}}} + + + {{/incisionDatetime}} + {{#result}} + + {{> qrda_templates/template_partials/_results}} + {{/result}} + {{#status}} + + {{> qrda_templates/template_partials/_status}} + {{/status}} + {{#components}} + + {{> qrda_templates/template_partials/_component}} + {{/components}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/procedure_recommended.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/procedure_recommended.mustache index cadc691044c6..7d93115e79ea 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/procedure_recommended.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/procedure_recommended.mustache @@ -1,40 +1,39 @@ - - - - - - - - - {{> _codes}} - {{description}} - - {{#anatomicalLocationSite}} - - {{> qrda_templates/template_partials/_anatomical_location_site}} - {{/anatomicalLocationSite}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - {{#rank}} - - {{> qrda_templates/template_partials/_rank}} - {{/rank}} - - - + + + + + + + + + {{> _codes}} + {{description}} + + {{#anatomicalLocationSite}} + + {{> qrda_templates/template_partials/_anatomical_location_site}} + {{/anatomicalLocationSite}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + {{#rank}} + + {{> qrda_templates/template_partials/_rank}} + {{/rank}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/program_participation.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/program_participation.mustache index eeae8b89b0c2..598b58c264f8 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/program_participation.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/program_participation.mustache @@ -1,21 +1,21 @@ - - - - - - - - {{#participationPeriod}} - - {{{participation_period}}} - {{/participationPeriod}} - - {{> qrda_templates/template_partials/_data_element_codes_as_values}} - {{#recorder}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/recorder}} - - + + + + + + + + {{#participationPeriod}} + + {{{participation_period}}} + {{/participationPeriod}} + + {{> qrda_templates/template_partials/_data_element_codes_as_values}} + {{#recorder}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/recorder}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/provider_care_experience.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/provider_care_experience.mustache index 710ed447d31f..250e084daecf 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/provider_care_experience.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/provider_care_experience.mustache @@ -1,21 +1,21 @@ - - - - - - - - - {{> qrda_templates/template_partials/_data_element_codes_as_values}} - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#recorder}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/recorder}} - - + + + + + + + + + {{> qrda_templates/template_partials/_data_element_codes_as_values}} + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#recorder}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/recorder}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/related_person.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/related_person.mustache index f9d00974a87e..abae680672f6 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/related_person.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/related_person.mustache @@ -1,18 +1,18 @@ - - - - - - - - {{> qrda_templates/template_partials/_data_element_codes_as_values}} - {{#identifier}} - - - - - - - {{/identifier}} - - + + + + + + + + {{> qrda_templates/template_partials/_data_element_codes_as_values}} + {{#identifier}} + + + + + + + {{/identifier}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/substance_recommended.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/substance_recommended.mustache index b802b012425b..60d4ebab6522 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/substance_recommended.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/substance_recommended.mustache @@ -1,44 +1,43 @@ - - - - - - - - - - - - {{> qrda_templates/template_partials/_medication_details}} - - - - - - - - {{> _codes}} - - - - {{#authorDatetime}} - - {{> qrda_templates/template_partials/_author}} - {{/authorDatetime}} - {{#requester}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/requester}} - {{#reason}} - - {{> qrda_templates/template_partials/_reason}} - {{/reason}} - {{#negationRationale}} - - {{> qrda_templates/template_partials/_reason}} - {{/negationRationale}} - - - + + + + + + + + + + + + {{> qrda_templates/template_partials/_medication_details}} + + + + + + + + {{> _codes}} + + + + {{#authorDatetime}} + + {{> qrda_templates/template_partials/_author}} + {{/authorDatetime}} + {{#requester}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/requester}} + {{#reason}} + + {{> qrda_templates/template_partials/_reason}} + {{/reason}} + {{#negationRationale}} + + {{> qrda_templates/template_partials/_reason}} + {{/negationRationale}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/symptom.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/symptom.mustache index 2cff50fb363e..b6ce7e5772f1 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/symptom.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/symptom.mustache @@ -1,50 +1,49 @@ - - - - - - - - - {{#prevalencePeriod}} - {{#completed_prevalence_period}} - - {{/completed_prevalence_period}} - {{^completed_prevalence_period}} - - {{/completed_prevalence_period}} - - {{{prevalence_period}}} - {{/prevalencePeriod}} - - - - - - - - - - - - {{#prevalencePeriod}} - - {{{prevalence_period}}} - {{/prevalencePeriod}} - - {{> qrda_templates/template_partials/_data_element_codes_as_values}} - {{#recorder}} - - - {{> qrda_templates/template_partials/_entity}} - - {{/recorder}} - {{#severity}} - - {{> qrda_templates/template_partials/_severity}} - {{/severity}} - - - - - + + + + + + + + + {{#prevalencePeriod}} + {{#completed_prevalence_period}} + + {{/completed_prevalence_period}} + {{^completed_prevalence_period}} + + {{/completed_prevalence_period}} + + {{{prevalence_period}}} + {{/prevalencePeriod}} + + + + + + + + + + + + {{#prevalencePeriod}} + + {{{prevalence_period}}} + {{/prevalencePeriod}} + + {{> qrda_templates/template_partials/_data_element_codes_as_values}} + {{#recorder}} + + + {{> qrda_templates/template_partials/_entity}} + + {{/recorder}} + {{#severity}} + + {{> qrda_templates/template_partials/_severity}} + {{/severity}} + + + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_admission_source.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_admission_source.mustache index a0893391294b..9cfbb7beb22d 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_admission_source.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_admission_source.mustache @@ -1,6 +1,6 @@ - - - - _code}}/> - - \ No newline at end of file + + + + _code}}/> + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_anatomical_location_site.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_anatomical_location_site.mustache index 93a087372d47..92c1d44e653a 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_anatomical_location_site.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_anatomical_location_site.mustache @@ -1 +1 @@ - _code}}/> \ No newline at end of file + _code}}/> diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_author.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_author.mustache index c713837b7d13..cc7d9627cc8e 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_author.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_author.mustache @@ -1,29 +1,29 @@ - - - {{#authorDatetime}} - {{{author_time}}} - {{/authorDatetime}} - - {{#display_author_dispenser_id}} - {{#dispenserId}} - {{{id_or_null_flavor}}} - {{/dispenserId}} - {{^dispenserId}} - - {{/dispenserId}} - {{/display_author_dispenser_id}} - {{^display_author_dispenser_id}} - {{#display_author_prescriber_id}} - {{#prescriberId}} - {{{id_or_null_flavor}}} - {{/prescriberId}} - {{^prescriberId}} - - {{/prescriberId}} - {{/display_author_prescriber_id}} - {{^display_author_prescriber_id}} - - {{/display_author_prescriber_id}} - {{/display_author_dispenser_id}} - - \ No newline at end of file + + + {{#authorDatetime}} + {{{author_time}}} + {{/authorDatetime}} + + {{#display_author_dispenser_id}} + {{#dispenserId}} + {{{id_or_null_flavor}}} + {{/dispenserId}} + {{^dispenserId}} + + {{/dispenserId}} + {{/display_author_dispenser_id}} + {{^display_author_dispenser_id}} + {{#display_author_prescriber_id}} + {{#prescriberId}} + {{{id_or_null_flavor}}} + {{/prescriberId}} + {{^prescriberId}} + + {{/prescriberId}} + {{/display_author_prescriber_id}} + {{^display_author_prescriber_id}} + + {{/display_author_prescriber_id}} + {{/display_author_dispenser_id}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_author_participation.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_author_participation.mustache index 60fbf32f4738..039fe4bd0a18 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_author_participation.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_author_participation.mustache @@ -1,15 +1,15 @@ - - - - {{{author_time}}} - - {{#provider}} - {{#provider_npi}} - - {{/provider_npi}} - {{/provider}} - {{^provider}} - - {{/provider}} - - \ No newline at end of file + + + + {{{author_time}}} + + {{#provider}} + {{#provider_npi}} + + {{/provider_npi}} + {{/provider}} + {{^provider}} + + {{/provider}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_component.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_component.mustache index 4903842402a3..7ef1626af7e1 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_component.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_component.mustache @@ -1,13 +1,13 @@ - - - - - - {{#code}} - - _code}}/> - {{/code}} - - {{{result_value}}} - - \ No newline at end of file + + + + + + {{#code}} + + _code}}/> + {{/code}} + + {{{result_value}}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_data_element_codes_as_values.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_data_element_codes_as_values.mustache index 34c737e6c2b6..b641e4d5ee14 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_data_element_codes_as_values.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_data_element_codes_as_values.mustache @@ -1,10 +1,10 @@ -{{#multiple_codes}} - - {{{translation_codes_and_codesystem_list}}} - -{{/multiple_codes}} -{{^multiple_codes}} - {{#dataElementCodes}} - _code}}/> - {{/dataElementCodes}} -{{/multiple_codes}} +{{#multiple_codes}} + + {{{translation_codes_and_codesystem_list}}} + +{{/multiple_codes}} +{{^multiple_codes}} + {{#dataElementCodes}} + _code}}/> + {{/dataElementCodes}} +{{/multiple_codes}} diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_days_supplied.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_days_supplied.mustache index f2ec0c1067a6..2d55544d3fe1 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_days_supplied.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_days_supplied.mustache @@ -1,6 +1,6 @@ - - - - - - \ No newline at end of file + + + + + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_encounter_class.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_encounter_class.mustache index 41ae39eb8823..b187acd81943 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_encounter_class.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_encounter_class.mustache @@ -1,6 +1,6 @@ - - - - _code}}/> - - \ No newline at end of file + + + + _code}}/> + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_encounter_diagnosis_qdm.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_encounter_diagnosis_qdm.mustache index fc6cf22114c0..e3fd90844d7c 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_encounter_diagnosis_qdm.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_encounter_diagnosis_qdm.mustache @@ -1,24 +1,24 @@ - - - - - - - {{#code}} - _code}} xsi:type="CD"/> - {{/code}} - {{#rank}} - - {{> qrda_templates/template_partials/_rank}} - {{/rank}} - {{#presentOnAdmissionIndicator}} - - - - - _code}} xsi:type="CD"/> - - - {{/presentOnAdmissionIndicator}} - - \ No newline at end of file + + + + + + + {{#code}} + _code}} xsi:type="CD"/> + {{/code}} + {{#rank}} + + {{> qrda_templates/template_partials/_rank}} + {{/rank}} + {{#presentOnAdmissionIndicator}} + + + + + _code}} xsi:type="CD"/> + + + {{/presentOnAdmissionIndicator}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity.mustache index 214178fdec59..23a7c5c10e80 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity.mustache @@ -1,12 +1,12 @@ -{{#care_partner_entity}} - {{> qrda_templates/template_partials/_entity_care_partner}} -{{/care_partner_entity}} -{{#patient_entity}} - {{> qrda_templates/template_partials/_entity_patient}} -{{/patient_entity}} -{{#practitioner_entity}} - {{> qrda_templates/template_partials/_entity_practitioner}} -{{/practitioner_entity}} -{{#organization_entity}} - {{> qrda_templates/template_partials/_entity_organization}} -{{/organization_entity}} +{{#care_partner_entity}} + {{> qrda_templates/template_partials/_entity_care_partner}} +{{/care_partner_entity}} +{{#patient_entity}} + {{> qrda_templates/template_partials/_entity_patient}} +{{/patient_entity}} +{{#practitioner_entity}} + {{> qrda_templates/template_partials/_entity_practitioner}} +{{/practitioner_entity}} +{{#organization_entity}} + {{> qrda_templates/template_partials/_entity_organization}} +{{/organization_entity}} diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_care_partner.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_care_partner.mustache index c4af9318e86f..18e0f18cb4d4 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_care_partner.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_care_partner.mustache @@ -1,11 +1,11 @@ - - - {{#identifier}} - - {{/identifier}} - {{#relationship}} - - _code}}/> - - {{/relationship}} - + + + {{#identifier}} + + {{/identifier}} + {{#relationship}} + + _code}}/> + + {{/relationship}} + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_location.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_location.mustache index 4e492248f811..35e8bb0bea0a 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_location.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_location.mustache @@ -1,11 +1,11 @@ - - - {{#identifier}} - - {{/identifier}} - {{#locationType}} - - _code}}/> - - {{/locationType}} - + + + {{#identifier}} + + {{/identifier}} + {{#locationType}} + + _code}}/> + + {{/locationType}} + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_organization.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_organization.mustache index 69e76017b93d..104260a506ac 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_organization.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_organization.mustache @@ -1,11 +1,11 @@ - - - {{#identifier}} - - {{/identifier}} - {{#type}} - - _code}}/> - - {{/type}} - + + + {{#identifier}} + + {{/identifier}} + {{#type}} + + _code}}/> + + {{/type}} + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_patient.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_patient.mustache index d75ec2f22f16..b47cccd0013f 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_patient.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_patient.mustache @@ -1,6 +1,6 @@ - - - {{#identifier}} - - {{/identifier}} - + + + {{#identifier}} + + {{/identifier}} + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_practitioner.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_practitioner.mustache index 2506c98f29fd..c55a69404474 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_practitioner.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_entity_practitioner.mustache @@ -1,19 +1,19 @@ - - - {{#identifier}} - - {{/identifier}} - {{#role}} - _code}}/> - {{/role}} - {{#specialty}} - - _code}}/> - - {{/specialty}} - {{#qualification}} - - _code}}/> - - {{/qualification}} - + + + {{#identifier}} + + {{/identifier}} + {{#role}} + _code}}/> + {{/role}} + {{#specialty}} + + _code}}/> + + {{/specialty}} + {{#qualification}} + + _code}}/> + + {{/qualification}} + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_facility_location.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_facility_location.mustache index e17200e898d8..dd91df9d3f95 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_facility_location.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_facility_location.mustache @@ -1,24 +1,24 @@ - - - - - - - {{#code}} - _code}}/> - {{/code}} - - 202 Burlington Rd. - Bedford - MA - 01730 - US - - - - Cypress Test Deck - - - \ No newline at end of file + + + + + + + {{#code}} + _code}}/> + {{/code}} + + 202 Burlington Rd. + Bedford + MA + 01730 + US + + + + Cypress Test Deck + + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_immunization_details.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_immunization_details.mustache index 4a3a2e3b9d64..a03dd5e09dd2 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_immunization_details.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_immunization_details.mustache @@ -1,14 +1,14 @@ -{{#route}} - - _code}}/> -{{/route}} -{{#negated}} - - -{{/negated}} -{{^negated}} -{{#dosage}} - - {{{dose_quantity_value}}} -{{/dosage}} -{{/negated}} \ No newline at end of file +{{#route}} + + _code}}/> +{{/route}} +{{#negated}} + + +{{/negated}} +{{^negated}} +{{#dosage}} + + {{{dose_quantity_value}}} +{{/dosage}} +{{/negated}} diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_immunization_supply_request.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_immunization_supply_request.mustache index 57cdec305975..4947916f6484 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_immunization_supply_request.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_immunization_supply_request.mustache @@ -1,29 +1,29 @@ - - - - - - - - {{#relevantPeriod}} - {{{medication_supply_request_period}}} - {{/relevantPeriod}} - {{^relevantPeriod}} - {{#authorDatetime}} - {{{author_effective_time}}} - {{/authorDatetime}} - {{/relevantPeriod}} - - - - - - - - - {{> _codes}} - 1 - - - - \ No newline at end of file + + + + + + + + {{#relevantPeriod}} + {{{medication_supply_request_period}}} + {{/relevantPeriod}} + {{^relevantPeriod}} + {{#authorDatetime}} + {{{author_effective_time}}} + {{/authorDatetime}} + {{/relevantPeriod}} + + + + + + + + + {{> _codes}} + 1 + + + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_interpretation.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_interpretation.mustache index ba1436432ca5..5cf573c9eb6d 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_interpretation.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_interpretation.mustache @@ -1 +1 @@ - _code}}/> \ No newline at end of file + _code}}/> diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_medication_details.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_medication_details.mustache index a7892eaa518e..266ac0bd80eb 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_medication_details.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_medication_details.mustache @@ -1,40 +1,40 @@ -{{#negated}} - - - - -{{/negated}} -{{^negated}} -{{#frequency}} - -{{{medication_frequency}}} -{{/frequency}} -{{/negated}} -{{#negated}} - - -{{/negated}} -{{^negated}} -{{#refills}} - - -{{/refills}} -{{/negated}} -{{#route}} - - _code}}/> -{{/route}} -{{#negated}} - - -{{/negated}} -{{^negated}} -{{#dosage}} - - {{{dose_quantity_value}}} -{{/dosage}} -{{^dosage}} - - -{{/dosage}} -{{/negated}} \ No newline at end of file +{{#negated}} + + + + +{{/negated}} +{{^negated}} +{{#frequency}} + +{{{medication_frequency}}} +{{/frequency}} +{{/negated}} +{{#negated}} + + +{{/negated}} +{{^negated}} +{{#refills}} + + +{{/refills}} +{{/negated}} +{{#route}} + + _code}}/> +{{/route}} +{{#negated}} + + +{{/negated}} +{{^negated}} +{{#dosage}} + + {{{dose_quantity_value}}} +{{/dosage}} +{{^dosage}} + + +{{/dosage}} +{{/negated}} diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_medication_supply_request.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_medication_supply_request.mustache index fd4338687096..4e6c3d40c4b9 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_medication_supply_request.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_medication_supply_request.mustache @@ -1,28 +1,28 @@ - - - - - - - - {{#relevantPeriod}} - {{{medication_supply_request_period}}} - {{/relevantPeriod}} - {{^relevantPeriod}} - {{#authorDatetime}} - {{{author_effective_time}}} - {{/authorDatetime}} - {{/relevantPeriod}} - - - - - - - - - {{> _codes}} - - - - \ No newline at end of file + + + + + + + + {{#relevantPeriod}} + {{{medication_supply_request_period}}} + {{/relevantPeriod}} + {{^relevantPeriod}} + {{#authorDatetime}} + {{{author_effective_time}}} + {{/authorDatetime}} + {{/relevantPeriod}} + + + + + + + + + {{> _codes}} + + + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_method.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_method.mustache index 892fe6e9251c..f8156cb88ff8 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_method.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_method.mustache @@ -1 +1 @@ - _code}}/> \ No newline at end of file + _code}}/> diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_ordinality.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_ordinality.mustache index 9802d654235f..539f73131264 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_ordinality.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_ordinality.mustache @@ -1 +1 @@ - _code}}/> \ No newline at end of file + _code}}/> diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_rank.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_rank.mustache index c1c976ed4c4b..598108775332 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_rank.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_rank.mustache @@ -1,7 +1,7 @@ - - - - - - - \ No newline at end of file + + + + + + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_reaction_observation.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_reaction_observation.mustache index 8e96ee0a7eb0..e1ca4572c6e8 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_reaction_observation.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_reaction_observation.mustache @@ -1,9 +1,9 @@ - - - - - - - _code}}/> - - \ No newline at end of file + + + + + + + _code}}/> + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_reason.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_reason.mustache index c4a01aad10c3..4abf20254cbc 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_reason.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_reason.mustache @@ -1,10 +1,10 @@ - - - - - {{#relevantPeriod}} - {{{relevant_period}}} - {{/relevantPeriod}} - _code}} xsi:type="CD"/> - - \ No newline at end of file + + + + + {{#relevantPeriod}} + {{{relevant_period}}} + {{/relevantPeriod}} + _code}} xsi:type="CD"/> + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_related_to.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_related_to.mustache index 35d05b158130..39b7da9a1ee9 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_related_to.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_related_to.mustache @@ -1,6 +1,6 @@ - - - - - - \ No newline at end of file + + + + + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_results.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_results.mustache index 7f3934005f1d..b4fc9486a363 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_results.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_results.mustache @@ -1,19 +1,18 @@ - - - - - - - - {{> _codes}} - - {{#has_result_date_time}} - {{{result_date_time}}} - {{/has_result_date_time}} - {{^has_result_date_time}} - {{{author_effective_time}}} - {{/has_result_date_time}} - {{{result_value}}} - - - + + + + + + + + {{> _codes}} + + {{#has_result_date_time}} + {{{result_date_time}}} + {{/has_result_date_time}} + {{^has_result_date_time}} + {{{author_effective_time}}} + {{/has_result_date_time}} + {{{result_value}}} + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_severity.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_severity.mustache index 72acfc7fd32a..15ebc09bdf91 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_severity.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_severity.mustache @@ -1,8 +1,8 @@ - - - - - - _code}}/> - - \ No newline at end of file + + + + + + _code}}/> + + diff --git a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_status.mustache b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_status.mustache index 4e9773992f13..6f352a36e10a 100644 --- a/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_status.mustache +++ b/src/Services/Qrda/qrda-export/catI-r5/qrda_templates/template_partials/_status.mustache @@ -1,8 +1,8 @@ - - - - - - _code}}/> - - \ No newline at end of file + + + + + + _code}}/> + + diff --git a/src/Services/Qrda/qrda-export/catIII/_continuous_variable_value.mustache b/src/Services/Qrda/qrda-export/catIII/_continuous_variable_value.mustache index cf914d18a823..9b53b3bb5a55 100644 --- a/src/Services/Qrda/qrda-export/catIII/_continuous_variable_value.mustache +++ b/src/Services/Qrda/qrda-export/catIII/_continuous_variable_value.mustache @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/Services/Qrda/qrda-export/catIII/_measure_data.mustache b/src/Services/Qrda/qrda-export/catIII/_measure_data.mustache index 9ffb83d30c21..e5d69b4c537f 100644 --- a/src/Services/Qrda/qrda-export/catIII/_measure_data.mustache +++ b/src/Services/Qrda/qrda-export/catIII/_measure_data.mustache @@ -38,4 +38,4 @@ {{/not_observ}} -{{/populations}} \ No newline at end of file +{{/populations}} diff --git a/src/Services/Qrda/qrda-export/catIII/_measure_section.mustache b/src/Services/Qrda/qrda-export/catIII/_measure_section.mustache index 9314cbf2e131..944e8da5793a 100644 --- a/src/Services/Qrda/qrda-export/catIII/_measure_section.mustache +++ b/src/Services/Qrda/qrda-export/catIII/_measure_section.mustache @@ -1,6 +1,6 @@
- - \ No newline at end of file + diff --git a/templates/reports/cqm/cqm-results-table.html.twig b/templates/reports/cqm/cqm-results-table.html.twig index 1536b07c5089..38a3534922fd 100644 --- a/templates/reports/cqm/cqm-results-table.html.twig +++ b/templates/reports/cqm/cqm-results-table.html.twig @@ -31,4 +31,4 @@ {% include 'reports/cqm/_results-table-body.html.twig' with {datasheet: datasheet, columns:8,report_id:report_id,display_excluded:true, display_exception:true} %} -
\ No newline at end of file +
diff --git a/templates/reports/cqm/cqm.html.twig b/templates/reports/cqm/cqm.html.twig index 45186c7a13f2..91044e624e8c 100644 --- a/templates/reports/cqm/cqm.html.twig +++ b/templates/reports/cqm/cqm.html.twig @@ -192,4 +192,4 @@ {{ oemrUiBelowContainerDiv(oemrUiSettings) }} - \ No newline at end of file + diff --git a/templates/reports/cqm/results-table.html.twig b/templates/reports/cqm/results-table.html.twig index 7444ef1b087c..bb5cde360270 100644 --- a/templates/reports/cqm/results-table.html.twig +++ b/templates/reports/cqm/results-table.html.twig @@ -28,4 +28,4 @@ {% include 'reports/cqm/_results-table-body.html.twig' with {datasheet: datasheet, columns:7,report_id:report_id,display_excluded:true, display_exception:false} %} - \ No newline at end of file + diff --git a/templates/super/rules/base/template/redirect.php b/templates/super/rules/base/template/redirect.php index 9c7fb9288632..2fb143bb025c 100644 --- a/templates/super/rules/base/template/redirect.php +++ b/templates/super/rules/base/template/redirect.php @@ -12,4 +12,3 @@ top.restoreSession(); window.location = ""; - diff --git a/templates/x12_partners/general_edit.html b/templates/x12_partners/general_edit.html index 1f1de47e40ec..02e90f3cb094 100644 --- a/templates/x12_partners/general_edit.html +++ b/templates/x12_partners/general_edit.html @@ -20,7 +20,7 @@
+
@@ -256,4 +256,3 @@ } - diff --git a/tests/Tests/ECQM/measure_result_map.csv b/tests/Tests/ECQM/measure_result_map.csv index be6eb0458a2a..b4f71015b1ac 100644 --- a/tests/Tests/ECQM/measure_result_map.csv +++ b/tests/Tests/ECQM/measure_result_map.csv @@ -12,5 +12,3 @@ skip,effectiveDate,effectiveEndDate,qrda_file,pubpid,measure,pop_set,IPP,DENOM,N 0,2019-01-01,2019-04-01,1_N_GP_Geriatric.xml,604f648ddfe4bd03c5e79881,CMS127v9,1,1,1,1,0,0,0 0,2019-01-01,2019-04-01,1_N_GP_Geriatric.xml,604f648ddfe4bd03c5e79881,CMS130v9,1,1,1,1,0,0,0 0,2019-01-01,2019-04-01,Z4_Heart_Adult.xml,604f6456dfe4bd03c5e78d1d,CMS165v9,1,1,1,1,0,0,0 - - diff --git a/tests/Tests/ECQM/test_patient_qrda/BH Adult_2.xml b/tests/Tests/ECQM/test_patient_qrda/BH Adult_2.xml index 635c02dbd8b6..fe708a91a0f3 100644 --- a/tests/Tests/ECQM/test_patient_qrda/BH Adult_2.xml +++ b/tests/Tests/ECQM/test_patient_qrda/BH Adult_2.xml @@ -110,7 +110,7 @@ - @@ -162,7 +162,7 @@
- - - + + - +
diff --git a/tests/Tests/Fixtures/FHIR/patients.json b/tests/Tests/Fixtures/FHIR/patients.json index 48f9bca44c43..76864397ef7e 100644 --- a/tests/Tests/Fixtures/FHIR/patients.json +++ b/tests/Tests/Fixtures/FHIR/patients.json @@ -36,7 +36,7 @@ }, "system": "http:\/\/terminology.hl7.org\/ValueSet\/v2-0203", "value": "test-fixture-789456" - } + } ], "active": true, "name": [ @@ -124,7 +124,7 @@ }, "system": "http:\/\/terminology.hl7.org\/ValueSet\/v2-0203", "value": "test-fixture-8" - } + } ], "active": true, "name": [ @@ -212,7 +212,7 @@ }, "system": "http:\/\/terminology.hl7.org\/ValueSet\/v2-0203", "value": "test-fixture-17" - } + } ], "active": true, "name": [ @@ -300,7 +300,7 @@ }, "system": "http:\/\/terminology.hl7.org\/ValueSet\/v2-0203", "value": "test-fixture-18" - } + } ], "active": true, "name": [ @@ -388,7 +388,7 @@ }, "system": "http:\/\/terminology.hl7.org\/ValueSet\/v2-0203", "value": "test-fixture-22" - } + } ], "active": true, "name": [ @@ -476,7 +476,7 @@ }, "system": "http:\/\/terminology.hl7.org\/ValueSet\/v2-0203", "value": "test-fixture-25" - } + } ], "active": true, "name": [ @@ -564,7 +564,7 @@ }, "system": "http:\/\/terminology.hl7.org\/ValueSet\/v2-0203", "value": "test-fixture-26" - } + } ], "active": true, "name": [ @@ -652,7 +652,7 @@ }, "system": "http:\/\/terminology.hl7.org\/ValueSet\/v2-0203", "value": "test-fixture-30" - } + } ], "active": true, "name": [ @@ -740,7 +740,7 @@ }, "system": "http:\/\/terminology.hl7.org\/ValueSet\/v2-0203", "value": "test-fixture-34" - } + } ], "active": true, "name": [ @@ -828,7 +828,7 @@ }, "system": "http:\/\/terminology.hl7.org\/ValueSet\/v2-0203", "value": "test-fixture-35" - } + } ], "active": true, "name": [ @@ -916,7 +916,7 @@ }, "system": "http:\/\/terminology.hl7.org\/ValueSet\/v2-0203", "value": "test-fixture-40" - } + } ], "active": true, "name": [ @@ -1004,7 +1004,7 @@ }, "system": "http:\/\/terminology.hl7.org\/ValueSet\/v2-0203", "value": "test-fixture-1001" - } + } ], "active": true, "name": [ diff --git a/tests/Tests/Unit/ClinicalDecisionRules/ReminderIntervalDetailTest.php b/tests/Tests/Unit/ClinicalDecisionRules/ReminderIntervalDetailTest.php index 32c7d8942030..c7ff09b48733 100644 --- a/tests/Tests/Unit/ClinicalDecisionRules/ReminderIntervalDetailTest.php +++ b/tests/Tests/Unit/ClinicalDecisionRules/ReminderIntervalDetailTest.php @@ -23,9 +23,9 @@ public function testDisplayFormatsCorrectly(): void $timeUnit = TimeUnit::from('day'); $detail = new ReminderIntervalDetail($intervalType, $intervalRange, $amount, $timeUnit); - + $result = $detail->display(); - + // Expected format: "Warning: 5 Days" // The result will contain translated strings, so we just check for the number $this->assertStringContainsString('5', $result); @@ -46,7 +46,7 @@ public function testDisplayWithDifferentAmounts(): void foreach ($amounts as $amount) { $detail = new ReminderIntervalDetail($intervalType, $intervalRange, $amount, $timeUnit); $result = $detail->display(); - + // Verify the numeric amount is present in the output $this->assertStringContainsString((string)$amount, $result); } diff --git a/tests/Tests/Unit/Common/Forms/FormLocatorTest.php b/tests/Tests/Unit/Common/Forms/FormLocatorTest.php index e59ebe24388f..6ce7867aeaaa 100644 --- a/tests/Tests/Unit/Common/Forms/FormLocatorTest.php +++ b/tests/Tests/Unit/Common/Forms/FormLocatorTest.php @@ -26,7 +26,7 @@ protected function setUp(): void $this->fileRoot = $GLOBALS['fileroot'] ?? ''; // Set fileroot to the OpenEMR root directory for tests $GLOBALS['fileroot'] = dirname(__FILE__, 6); - + $this->formLocator = new FormLocator(); } @@ -44,9 +44,9 @@ public function testFindFileLBFForm(): void { global $GLOBALS; $expectedPath = $GLOBALS['fileroot'] . "/interface/forms/LBF/view.php"; - + $result = $this->formLocator->findFile('LBFmyform', 'view.php', 'load_form.php'); - + $this->assertEquals($expectedPath, $result); } @@ -58,9 +58,9 @@ public function testFindFileLBTForm(): void { global $GLOBALS; $expectedPath = $GLOBALS['fileroot'] . "/interface/forms/LBF/view.php"; - + $result = $this->formLocator->findFile('LBTref', 'view.php', 'load_form.php'); - + $this->assertEquals($expectedPath, $result); } @@ -71,9 +71,9 @@ public function testFindFileLBTbillForm(): void { global $GLOBALS; $expectedPath = $GLOBALS['fileroot'] . "/interface/forms/LBF/view.php"; - + $result = $this->formLocator->findFile('LBTbill', 'view.php', 'load_form.php'); - + $this->assertEquals($expectedPath, $result); } @@ -84,9 +84,9 @@ public function testFindFileLBTptreqForm(): void { global $GLOBALS; $expectedPath = $GLOBALS['fileroot'] . "/interface/forms/LBF/view.php"; - + $result = $this->formLocator->findFile('LBTptreq', 'view.php', 'load_form.php'); - + $this->assertEquals($expectedPath, $result); } @@ -97,9 +97,9 @@ public function testFindFileLBTphreqForm(): void { global $GLOBALS; $expectedPath = $GLOBALS['fileroot'] . "/interface/forms/LBF/view.php"; - + $result = $this->formLocator->findFile('LBTphreq', 'view.php', 'load_form.php'); - + $this->assertEquals($expectedPath, $result); } @@ -110,9 +110,9 @@ public function testFindFileLBTlegalForm(): void { global $GLOBALS; $expectedPath = $GLOBALS['fileroot'] . "/interface/forms/LBF/view.php"; - + $result = $this->formLocator->findFile('LBTlegal', 'view.php', 'load_form.php'); - + $this->assertEquals($expectedPath, $result); } @@ -123,9 +123,9 @@ public function testFindFileRegularForm(): void { global $GLOBALS; $expectedPath = $GLOBALS['fileroot'] . "/interface/forms/vitals/view.php"; - + $result = $this->formLocator->findFile('vitals', 'view.php', 'load_form.php'); - + $this->assertEquals($expectedPath, $result); } @@ -136,9 +136,9 @@ public function testFindFileLBFNewForm(): void { global $GLOBALS; $expectedPath = $GLOBALS['fileroot'] . "/interface/forms/LBF/new.php"; - + $result = $this->formLocator->findFile('LBFmyform', 'new.php', 'load_form.php'); - + $this->assertEquals($expectedPath, $result); } @@ -149,9 +149,9 @@ public function testFindFileLBTNewForm(): void { global $GLOBALS; $expectedPath = $GLOBALS['fileroot'] . "/interface/forms/LBF/new.php"; - + $result = $this->formLocator->findFile('LBTref', 'new.php', 'load_form.php'); - + $this->assertEquals($expectedPath, $result); } } diff --git a/tests/Tests/data/Services/FHIR/Questionnaire/questionnaire-sdc-pathology.json b/tests/Tests/data/Services/FHIR/Questionnaire/questionnaire-sdc-pathology.json index 2ab899d67dfe..5ac1dcd72b23 100644 --- a/tests/Tests/data/Services/FHIR/Questionnaire/questionnaire-sdc-pathology.json +++ b/tests/Tests/data/Services/FHIR/Questionnaire/questionnaire-sdc-pathology.json @@ -1,348 +1,348 @@ -{ - "resourceType" : "Questionnaire", - "id" : "questionnaire-sdc-profile-example-cap", - "meta" : { - "profile" : ["http://hl7.org/fhir/uv/sdc/StructureDefinition/sdc-questionnaire"] - }, - "text" : { - "status" : "extensions", - "div" : "

Generated Narrative: Questionnaire questionnaire-sdc-profile-example-cap

Structure\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
LinkIDTextCardinalityTypeDescription & Constraints\"doco\"
\".\"\".\" QuestionnaireSDCProfileExampleCapQuestionnairehttp://hl7.org/fhir/uv/sdc/Questionnaire/questionnaire-sdc-profile-example-cap#4.0.0
\".\"\".\"\".\" 1MARGINS1..1group
\".\"\".\"\".\"\".\" 1.1Status of surgical margin involvement by tumor (observable entity)1..1choiceOptions: 4 options
\".\"\".\"\".\"\".\"\".\" 1.1.1null1..1groupEnable When: 1.1 =
\".\"\".\"\".\"\".\"\".\"\".\" 1.1.1.1Distance from Closest Margin0..1choiceOptions: 2 options
\".\"\".\"\".\"\".\"\".\"\".\"\".\" 1.1.1.1.1.1Specify (mm)1..1decimal
\".\"\".\"\".\"\".\"\".\"\".\"\".\" 1.1.1.1.2.1Cannot be assessed (explain)1..1string
\".\"\".\"\".\"\".\"\".\"\".\" 1.1.1.2Specify Margin, if possible0..1choiceOptions: 2 options
\".\"\".\"\".\"\".\"\".\"\".\"\".\" 1.1.1.2.1.1Cannot be assessed (explain)1..1string
\".\"\".\"\".\"\".\"\".\"\".\"\".\" 1.1.1.2.2.1Cannot be determined (explain)1..1string
\".\"\".\"\".\"\".\"\".\" 1.1.2.1Specify Margin(s), if possible1..1choiceOptions: 2 options
\".\"\".\"\".\"\".\"\".\"\".\" 1.1.2.1.1.1Specify margin(s)1..1string
\".\"\".\"\".\"\".\"\".\"\".\" 1.1.2.1.2.1Cannot be determined (explain)1..1string
\".\"\".\"\".\"\".\"\".\" 1.1.3.1Cannot be determined1..1string
\".\"\".\"\".\"\".\"\".\" 1.1.4.1Not Applicable1..1string
\".\"\".\"\".\" 2ACCESSORY FINDINGS1..1group
\".\"\".\"\".\"\".\" 2.1Treatment Effect (applicable to carcinomas treated with neoadjuvant therapy)0..1choiceOptions: 3 options
\".\"\".\"\".\"\".\"\".\" 2.1.1.1Not identified1..1string
\".\"\".\"\".\"\".\"\".\" 2.1.2.1Present (specify)1..1string
\".\"\".\"\".\"\".\"\".\" 2.1.3.1Indeterminate1..1string
\".\"\".\"\".\"\".\" 2.2Tumor Description0..*choiceOptions: 4 options
\".\"\".\"\".\"\".\"\".\" 2.2.1.1??0..*choiceOptions: 3 options
\".\"\".\"\".\"\".\"\".\"\".\" 2.2.1.1.1.1Extra-adrenal (specify)1..1string
\".\"\".\"\".\"\".\"\".\" 2.2.2.1Other (specify)1..1string

\"doco\" Documentation for this format

Options Sets

Answer options for 1.1

  • http://example.org#M1 ("Margins univolved by tumor")
  • http://example.org#M2 ("Margin(s) involved by tumor")
  • http://example.org#M3 ("Cannot be determined")
  • http://example.org#M4 ("Not applicable")

Answer options for 1.1.1.1

  • http://example.org#D1 ("Specify (mm)")
  • http://example.org#D2 ("Cannot be assessed (explain)")

Answer options for 1.1.1.2

  • http://example.org#W1 ("Specify margin")
  • http://example.org#W2 ("Cannot be determined (explain)")

Answer options for 1.1.2.1

  • http://example.org#I1 ("Specify margin(s)")
  • http://example.org#I2 ("Cannot be determined (explain)")

Answer options for 2.1

  • http://example.org#E1 ("Not identified")
  • http://example.org#E2 ("Present (specify)")
  • http://example.org#E3 ("Indeterminate")

Answer options for 2.2

  • http://example.org#U1 ("Hemorrhagic")
  • http://example.org#U2 ("Necrotic")
  • http://example.org#U3 ("Invasion")
  • http://example.org#U4 ("Other (specify)")

Answer options for 2.2.1.1

  • http://example.org#V1 ("Capsule")
  • http://example.org#V2 ("Vessels")
  • http://example.org#V3 ("Extra-adrenal (specify)")
" - }, - "extension" : [{ - "url" : "http://hl7.org/fhir/5.0/StructureDefinition/extension-Questionnaire.versionAlgorithm%5Bx%5D", - "valueCoding" : { - "system" : "http://hl7.org/fhir/version-algorithm", - "code" : "semver" - } - }], - "url" : "http://hl7.org/fhir/uv/sdc/Questionnaire/questionnaire-sdc-profile-example-cap", - "identifier" : [{ - "system" : "urn:ietf:rfc:3986", - "value" : "urn:oid:2.16.840.1.113883.4.642.40.17.35.6" - }], - "version" : "4.0.0", - "name" : "QuestionnaireSDCProfileExampleCap", - "title" : "Questionnaire SDC Profile Cap", - "status" : "active", - "date" : "2025-08-17T08:43:40+00:00", - "publisher" : "HL7 International / FHIR Infrastructure", - "contact" : [{ - "name" : "HL7 International / FHIR Infrastructure", - "telecom" : [{ - "system" : "url", - "value" : "http://www.hl7.org/Special/committees/fiwg" - }] - }, - { - "telecom" : [{ - "system" : "url", - "value" : "http://www.hl7.org/Special/committees/fiwg" - }] - }], - "jurisdiction" : [{ - "coding" : [{ - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "code" : "001", - "display" : "World" - }] - }], - "item" : [ - { - "linkId" : "1", - "text" : "MARGINS", - "type" : "group", - "required" : true, - "item" : [{ - "linkId" : "1.1", - "text" : "Status of surgical margin involvement by tumor (observable entity)", - "type" : "choice", - "required" : true, - "answerOption" : [{ - "valueCoding" : { - "system" : "http://example.org", - "code" : "M1", - "display" : "Margins univolved by tumor" - } - }, - { - "valueCoding" : { - "system" : "http://example.org", - "code" : "M2", - "display" : "Margin(s) involved by tumor" - } - }, - { - "valueCoding" : { - "system" : "http://example.org", - "code" : "M3", - "display" : "Cannot be determined" - } - }, - { - "valueCoding" : { - "system" : "http://example.org", - "code" : "M4", - "display" : "Not applicable" - } - }], - "item" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/5.0/StructureDefinition/extension-Questionnaire.item.disabledDisplay", - "valueCode" : "hidden" - }], - "linkId" : "1.1.1", - "type" : "group", - "enableWhen" : [{ - "question" : "1.1", - "operator" : "=", - "answerCoding" : { - "system" : "http://example.org", - "code" : "M1" - } - }], - "required" : true, - "item" : [{ - "linkId" : "1.1.1.1", - "text" : "Distance from Closest Margin", - "type" : "choice", - "answerOption" : [{ - "valueCoding" : { - "system" : "http://example.org", - "code" : "D1", - "display" : "Specify (mm)" - } - }, - { - "valueCoding" : { - "system" : "http://example.org", - "code" : "D2", - "display" : "Cannot be assessed (explain)" - } - }], - "item" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/minValue", - "valueDecimal" : 0.01 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/maxValue", - "valueDecimal" : 1000 - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/maxDecimalPlaces", - "valueInteger" : 2 - }], - "linkId" : "1.1.1.1.1.1", - "text" : "Specify (mm)", - "type" : "decimal", - "required" : true - }, - { - "linkId" : "1.1.1.1.2.1", - "text" : "Cannot be assessed (explain)", - "type" : "string", - "required" : true - }] - }, - { - "linkId" : "1.1.1.2", - "text" : "Specify Margin, if possible", - "type" : "choice", - "answerOption" : [{ - "valueCoding" : { - "system" : "http://example.org", - "code" : "W1", - "display" : "Specify margin" - } - }, - { - "valueCoding" : { - "system" : "http://example.org", - "code" : "W2", - "display" : "Cannot be determined (explain)" - } - }], - "item" : [{ - "linkId" : "1.1.1.2.1.1", - "text" : "Cannot be assessed (explain)", - "type" : "string", - "required" : true - }, - { - "linkId" : "1.1.1.2.2.1", - "text" : "Cannot be determined (explain)", - "type" : "string", - "required" : true - }] - }] - }, - { - "linkId" : "1.1.2.1", - "text" : "Specify Margin(s), if possible", - "type" : "choice", - "required" : true, - "answerOption" : [{ - "valueCoding" : { - "system" : "http://example.org", - "code" : "I1", - "display" : "Specify margin(s)" - } - }, - { - "valueCoding" : { - "system" : "http://example.org", - "code" : "I2", - "display" : "Cannot be determined (explain)" - } - }], - "item" : [{ - "linkId" : "1.1.2.1.1.1", - "text" : "Specify margin(s)", - "type" : "string", - "required" : true - }, - { - "linkId" : "1.1.2.1.2.1", - "text" : "Cannot be determined (explain)", - "type" : "string", - "required" : true - }] - }, - { - "linkId" : "1.1.3.1", - "text" : "Cannot be determined", - "type" : "string", - "required" : true - }, - { - "linkId" : "1.1.4.1", - "text" : "Not Applicable", - "type" : "string", - "required" : true - }] - }] - }, - { - "linkId" : "2", - "text" : "ACCESSORY FINDINGS", - "type" : "group", - "required" : true, - "item" : [{ - "linkId" : "2.1", - "text" : "Treatment Effect (applicable to carcinomas treated with neoadjuvant therapy)", - "type" : "choice", - "answerOption" : [{ - "valueCoding" : { - "system" : "http://example.org", - "code" : "E1", - "display" : "Not identified" - } - }, - { - "valueCoding" : { - "system" : "http://example.org", - "code" : "E2", - "display" : "Present (specify)" - } - }, - { - "valueCoding" : { - "system" : "http://example.org", - "code" : "E3", - "display" : "Indeterminate" - } - }], - "item" : [{ - "linkId" : "2.1.1.1", - "text" : "Not identified", - "type" : "string", - "required" : true - }, - { - "linkId" : "2.1.2.1", - "text" : "Present (specify)", - "type" : "string", - "required" : true - }, - { - "linkId" : "2.1.3.1", - "text" : "Indeterminate", - "type" : "string", - "required" : true - }] - }, - { - "linkId" : "2.2", - "text" : "Tumor Description", - "type" : "choice", - "repeats" : true, - "answerOption" : [{ - "valueCoding" : { - "system" : "http://example.org", - "code" : "U1", - "display" : "Hemorrhagic" - } - }, - { - "valueCoding" : { - "system" : "http://example.org", - "code" : "U2", - "display" : "Necrotic" - } - }, - { - "valueCoding" : { - "system" : "http://example.org", - "code" : "U3", - "display" : "Invasion" - } - }, - { - "valueCoding" : { - "system" : "http://example.org", - "code" : "U4", - "display" : "Other (specify)" - } - }], - "item" : [{ - "linkId" : "2.2.1.1", - "text" : "??", - "type" : "choice", - "repeats" : true, - "answerOption" : [{ - "valueCoding" : { - "system" : "http://example.org", - "code" : "V1", - "display" : "Capsule" - } - }, - { - "valueCoding" : { - "system" : "http://example.org", - "code" : "V2", - "display" : "Vessels" - } - }, - { - "valueCoding" : { - "system" : "http://example.org", - "code" : "V3", - "display" : "Extra-adrenal (specify)" - } - }], - "item" : [{ - "linkId" : "2.2.1.1.1.1", - "text" : "Extra-adrenal (specify)", - "type" : "string", - "required" : true - }] - }, - { - "linkId" : "2.2.2.1", - "text" : "Other (specify)", - "type" : "string", - "required" : true - }] - }] - }] -} +{ + "resourceType" : "Questionnaire", + "id" : "questionnaire-sdc-profile-example-cap", + "meta" : { + "profile" : ["http://hl7.org/fhir/uv/sdc/StructureDefinition/sdc-questionnaire"] + }, + "text" : { + "status" : "extensions", + "div" : "

Generated Narrative: Questionnaire questionnaire-sdc-profile-example-cap

Structure\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
LinkIDTextCardinalityTypeDescription & Constraints\"doco\"
\".\"\".\" QuestionnaireSDCProfileExampleCapQuestionnairehttp://hl7.org/fhir/uv/sdc/Questionnaire/questionnaire-sdc-profile-example-cap#4.0.0
\".\"\".\"\".\" 1MARGINS1..1group
\".\"\".\"\".\"\".\" 1.1Status of surgical margin involvement by tumor (observable entity)1..1choiceOptions: 4 options
\".\"\".\"\".\"\".\"\".\" 1.1.1null1..1groupEnable When: 1.1 =
\".\"\".\"\".\"\".\"\".\"\".\" 1.1.1.1Distance from Closest Margin0..1choiceOptions: 2 options
\".\"\".\"\".\"\".\"\".\"\".\"\".\" 1.1.1.1.1.1Specify (mm)1..1decimal
\".\"\".\"\".\"\".\"\".\"\".\"\".\" 1.1.1.1.2.1Cannot be assessed (explain)1..1string
\".\"\".\"\".\"\".\"\".\"\".\" 1.1.1.2Specify Margin, if possible0..1choiceOptions: 2 options
\".\"\".\"\".\"\".\"\".\"\".\"\".\" 1.1.1.2.1.1Cannot be assessed (explain)1..1string
\".\"\".\"\".\"\".\"\".\"\".\"\".\" 1.1.1.2.2.1Cannot be determined (explain)1..1string
\".\"\".\"\".\"\".\"\".\" 1.1.2.1Specify Margin(s), if possible1..1choiceOptions: 2 options
\".\"\".\"\".\"\".\"\".\"\".\" 1.1.2.1.1.1Specify margin(s)1..1string
\".\"\".\"\".\"\".\"\".\"\".\" 1.1.2.1.2.1Cannot be determined (explain)1..1string
\".\"\".\"\".\"\".\"\".\" 1.1.3.1Cannot be determined1..1string
\".\"\".\"\".\"\".\"\".\" 1.1.4.1Not Applicable1..1string
\".\"\".\"\".\" 2ACCESSORY FINDINGS1..1group
\".\"\".\"\".\"\".\" 2.1Treatment Effect (applicable to carcinomas treated with neoadjuvant therapy)0..1choiceOptions: 3 options
\".\"\".\"\".\"\".\"\".\" 2.1.1.1Not identified1..1string
\".\"\".\"\".\"\".\"\".\" 2.1.2.1Present (specify)1..1string
\".\"\".\"\".\"\".\"\".\" 2.1.3.1Indeterminate1..1string
\".\"\".\"\".\"\".\" 2.2Tumor Description0..*choiceOptions: 4 options
\".\"\".\"\".\"\".\"\".\" 2.2.1.1??0..*choiceOptions: 3 options
\".\"\".\"\".\"\".\"\".\"\".\" 2.2.1.1.1.1Extra-adrenal (specify)1..1string
\".\"\".\"\".\"\".\"\".\" 2.2.2.1Other (specify)1..1string

\"doco\" Documentation for this format

Options Sets

Answer options for 1.1

  • http://example.org#M1 ("Margins univolved by tumor")
  • http://example.org#M2 ("Margin(s) involved by tumor")
  • http://example.org#M3 ("Cannot be determined")
  • http://example.org#M4 ("Not applicable")

Answer options for 1.1.1.1

  • http://example.org#D1 ("Specify (mm)")
  • http://example.org#D2 ("Cannot be assessed (explain)")

Answer options for 1.1.1.2

  • http://example.org#W1 ("Specify margin")
  • http://example.org#W2 ("Cannot be determined (explain)")

Answer options for 1.1.2.1

  • http://example.org#I1 ("Specify margin(s)")
  • http://example.org#I2 ("Cannot be determined (explain)")

Answer options for 2.1

  • http://example.org#E1 ("Not identified")
  • http://example.org#E2 ("Present (specify)")
  • http://example.org#E3 ("Indeterminate")

Answer options for 2.2

  • http://example.org#U1 ("Hemorrhagic")
  • http://example.org#U2 ("Necrotic")
  • http://example.org#U3 ("Invasion")
  • http://example.org#U4 ("Other (specify)")

Answer options for 2.2.1.1

  • http://example.org#V1 ("Capsule")
  • http://example.org#V2 ("Vessels")
  • http://example.org#V3 ("Extra-adrenal (specify)")
" + }, + "extension" : [{ + "url" : "http://hl7.org/fhir/5.0/StructureDefinition/extension-Questionnaire.versionAlgorithm%5Bx%5D", + "valueCoding" : { + "system" : "http://hl7.org/fhir/version-algorithm", + "code" : "semver" + } + }], + "url" : "http://hl7.org/fhir/uv/sdc/Questionnaire/questionnaire-sdc-profile-example-cap", + "identifier" : [{ + "system" : "urn:ietf:rfc:3986", + "value" : "urn:oid:2.16.840.1.113883.4.642.40.17.35.6" + }], + "version" : "4.0.0", + "name" : "QuestionnaireSDCProfileExampleCap", + "title" : "Questionnaire SDC Profile Cap", + "status" : "active", + "date" : "2025-08-17T08:43:40+00:00", + "publisher" : "HL7 International / FHIR Infrastructure", + "contact" : [{ + "name" : "HL7 International / FHIR Infrastructure", + "telecom" : [{ + "system" : "url", + "value" : "http://www.hl7.org/Special/committees/fiwg" + }] + }, + { + "telecom" : [{ + "system" : "url", + "value" : "http://www.hl7.org/Special/committees/fiwg" + }] + }], + "jurisdiction" : [{ + "coding" : [{ + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "code" : "001", + "display" : "World" + }] + }], + "item" : [ + { + "linkId" : "1", + "text" : "MARGINS", + "type" : "group", + "required" : true, + "item" : [{ + "linkId" : "1.1", + "text" : "Status of surgical margin involvement by tumor (observable entity)", + "type" : "choice", + "required" : true, + "answerOption" : [{ + "valueCoding" : { + "system" : "http://example.org", + "code" : "M1", + "display" : "Margins univolved by tumor" + } + }, + { + "valueCoding" : { + "system" : "http://example.org", + "code" : "M2", + "display" : "Margin(s) involved by tumor" + } + }, + { + "valueCoding" : { + "system" : "http://example.org", + "code" : "M3", + "display" : "Cannot be determined" + } + }, + { + "valueCoding" : { + "system" : "http://example.org", + "code" : "M4", + "display" : "Not applicable" + } + }], + "item" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/5.0/StructureDefinition/extension-Questionnaire.item.disabledDisplay", + "valueCode" : "hidden" + }], + "linkId" : "1.1.1", + "type" : "group", + "enableWhen" : [{ + "question" : "1.1", + "operator" : "=", + "answerCoding" : { + "system" : "http://example.org", + "code" : "M1" + } + }], + "required" : true, + "item" : [{ + "linkId" : "1.1.1.1", + "text" : "Distance from Closest Margin", + "type" : "choice", + "answerOption" : [{ + "valueCoding" : { + "system" : "http://example.org", + "code" : "D1", + "display" : "Specify (mm)" + } + }, + { + "valueCoding" : { + "system" : "http://example.org", + "code" : "D2", + "display" : "Cannot be assessed (explain)" + } + }], + "item" : [{ + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/minValue", + "valueDecimal" : 0.01 + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/maxValue", + "valueDecimal" : 1000 + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/maxDecimalPlaces", + "valueInteger" : 2 + }], + "linkId" : "1.1.1.1.1.1", + "text" : "Specify (mm)", + "type" : "decimal", + "required" : true + }, + { + "linkId" : "1.1.1.1.2.1", + "text" : "Cannot be assessed (explain)", + "type" : "string", + "required" : true + }] + }, + { + "linkId" : "1.1.1.2", + "text" : "Specify Margin, if possible", + "type" : "choice", + "answerOption" : [{ + "valueCoding" : { + "system" : "http://example.org", + "code" : "W1", + "display" : "Specify margin" + } + }, + { + "valueCoding" : { + "system" : "http://example.org", + "code" : "W2", + "display" : "Cannot be determined (explain)" + } + }], + "item" : [{ + "linkId" : "1.1.1.2.1.1", + "text" : "Cannot be assessed (explain)", + "type" : "string", + "required" : true + }, + { + "linkId" : "1.1.1.2.2.1", + "text" : "Cannot be determined (explain)", + "type" : "string", + "required" : true + }] + }] + }, + { + "linkId" : "1.1.2.1", + "text" : "Specify Margin(s), if possible", + "type" : "choice", + "required" : true, + "answerOption" : [{ + "valueCoding" : { + "system" : "http://example.org", + "code" : "I1", + "display" : "Specify margin(s)" + } + }, + { + "valueCoding" : { + "system" : "http://example.org", + "code" : "I2", + "display" : "Cannot be determined (explain)" + } + }], + "item" : [{ + "linkId" : "1.1.2.1.1.1", + "text" : "Specify margin(s)", + "type" : "string", + "required" : true + }, + { + "linkId" : "1.1.2.1.2.1", + "text" : "Cannot be determined (explain)", + "type" : "string", + "required" : true + }] + }, + { + "linkId" : "1.1.3.1", + "text" : "Cannot be determined", + "type" : "string", + "required" : true + }, + { + "linkId" : "1.1.4.1", + "text" : "Not Applicable", + "type" : "string", + "required" : true + }] + }] + }, + { + "linkId" : "2", + "text" : "ACCESSORY FINDINGS", + "type" : "group", + "required" : true, + "item" : [{ + "linkId" : "2.1", + "text" : "Treatment Effect (applicable to carcinomas treated with neoadjuvant therapy)", + "type" : "choice", + "answerOption" : [{ + "valueCoding" : { + "system" : "http://example.org", + "code" : "E1", + "display" : "Not identified" + } + }, + { + "valueCoding" : { + "system" : "http://example.org", + "code" : "E2", + "display" : "Present (specify)" + } + }, + { + "valueCoding" : { + "system" : "http://example.org", + "code" : "E3", + "display" : "Indeterminate" + } + }], + "item" : [{ + "linkId" : "2.1.1.1", + "text" : "Not identified", + "type" : "string", + "required" : true + }, + { + "linkId" : "2.1.2.1", + "text" : "Present (specify)", + "type" : "string", + "required" : true + }, + { + "linkId" : "2.1.3.1", + "text" : "Indeterminate", + "type" : "string", + "required" : true + }] + }, + { + "linkId" : "2.2", + "text" : "Tumor Description", + "type" : "choice", + "repeats" : true, + "answerOption" : [{ + "valueCoding" : { + "system" : "http://example.org", + "code" : "U1", + "display" : "Hemorrhagic" + } + }, + { + "valueCoding" : { + "system" : "http://example.org", + "code" : "U2", + "display" : "Necrotic" + } + }, + { + "valueCoding" : { + "system" : "http://example.org", + "code" : "U3", + "display" : "Invasion" + } + }, + { + "valueCoding" : { + "system" : "http://example.org", + "code" : "U4", + "display" : "Other (specify)" + } + }], + "item" : [{ + "linkId" : "2.2.1.1", + "text" : "??", + "type" : "choice", + "repeats" : true, + "answerOption" : [{ + "valueCoding" : { + "system" : "http://example.org", + "code" : "V1", + "display" : "Capsule" + } + }, + { + "valueCoding" : { + "system" : "http://example.org", + "code" : "V2", + "display" : "Vessels" + } + }, + { + "valueCoding" : { + "system" : "http://example.org", + "code" : "V3", + "display" : "Extra-adrenal (specify)" + } + }], + "item" : [{ + "linkId" : "2.2.1.1.1.1", + "text" : "Extra-adrenal (specify)", + "type" : "string", + "required" : true + }] + }, + { + "linkId" : "2.2.2.1", + "text" : "Other (specify)", + "type" : "string", + "required" : true + }] + }] + }] +} diff --git a/tests/Tests/data/Services/FHIR/QuestionnaireResponse/Questionnaire-phq-9-example.json b/tests/Tests/data/Services/FHIR/QuestionnaireResponse/Questionnaire-phq-9-example.json index 2101104b4b40..75fe2b136bac 100644 --- a/tests/Tests/data/Services/FHIR/QuestionnaireResponse/Questionnaire-phq-9-example.json +++ b/tests/Tests/data/Services/FHIR/QuestionnaireResponse/Questionnaire-phq-9-example.json @@ -733,4 +733,4 @@ } }] }] -} \ No newline at end of file +} diff --git a/tests/Tests/data/Services/FHIR/QuestionnaireResponse/QuestionnaireResponse-phq-9-example.json b/tests/Tests/data/Services/FHIR/QuestionnaireResponse/QuestionnaireResponse-phq-9-example.json index ec9d1c7249b2..5cb78d40becc 100644 --- a/tests/Tests/data/Services/FHIR/QuestionnaireResponse/QuestionnaireResponse-phq-9-example.json +++ b/tests/Tests/data/Services/FHIR/QuestionnaireResponse/QuestionnaireResponse-phq-9-example.json @@ -134,4 +134,4 @@ } }] }] -} \ No newline at end of file +} From d1203b7b1f32e450c0eda12d1778f68c50c5ea1b Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Mon, 5 Jan 2026 22:03:17 -0500 Subject: [PATCH 126/139] fix(phpstan): resolve class name collision between Procedure classes (#10071) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(phpstan): resolve class name collision between Procedure classes Add namespace OpenEMR\Forms\FeeSheet\Review to fee_sheet classes to avoid collision with the ClinicalTypes Procedure class. Also rename classes to follow PSR naming conventions (CodeInfo, Procedure, EncounterInfo). Fixes #10046 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 * refactor(fee_sheet_ajax): use array_map and ensure arrays are valid Replace foreach loops with array_map for cleaner functional style. Add defensive checks to ensure json_decode results are always arrays. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 * refactor(FeeSheet): move classes to src/ with PSR-4 autoloading and add unit tests - Move CodeInfo, Procedure, EncounterInfo classes to src/Forms/FeeSheet/Review/ - Split into separate files following PSR-4 conventions - Add 13 unit tests for the FeeSheet Review classes - Remove obsolete require_once statements - Update PHPStan baseline to remove stale entries - Add check_code_set_filters mock to isolated test bootstrap 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --------- Co-authored-by: Claude Opus 4.5 --- .composer-require-checker.json | 1 + .phpstan/phpstan-remaining-baseline.neon | 28 --- .../forms/fee_sheet/review/fee_sheet_ajax.php | 34 ++- .../fee_sheet/review/fee_sheet_justify.php | 3 +- .../fee_sheet/review/fee_sheet_queries.php | 14 +- .../review/fee_sheet_search_ajax.php | 1 - .../review/fee_sheet_search_queries.php | 4 +- .../Forms/FeeSheet/Review/CodeInfo.php | 73 ++----- src/Forms/FeeSheet/Review/EncounterInfo.php | 29 +++ src/Forms/FeeSheet/Review/Procedure.php | 41 ++++ .../FeeSheet/Review/FeeSheetClassesTest.php | 195 ++++++++++++++++++ tests/bootstrap-isolated.php | 19 ++ 12 files changed, 335 insertions(+), 107 deletions(-) rename interface/forms/fee_sheet/review/fee_sheet_classes.php => src/Forms/FeeSheet/Review/CodeInfo.php (50%) create mode 100644 src/Forms/FeeSheet/Review/EncounterInfo.php create mode 100644 src/Forms/FeeSheet/Review/Procedure.php create mode 100644 tests/Tests/Unit/Forms/FeeSheet/Review/FeeSheetClassesTest.php diff --git a/.composer-require-checker.json b/.composer-require-checker.json index 180af3932784..4f3c0c908bd7 100644 --- a/.composer-require-checker.json +++ b/.composer-require-checker.json @@ -29,6 +29,7 @@ "areCredentialsCreated", "buildTemplate", "checkUserSetting", + "check_code_set_filters", "csv_like_join", "display_layout_tabs", "display_layout_tabs_data", diff --git a/.phpstan/phpstan-remaining-baseline.neon b/.phpstan/phpstan-remaining-baseline.neon index 8cb4301a6987..dde177cce85b 100644 --- a/.phpstan/phpstan-remaining-baseline.neon +++ b/.phpstan/phpstan-remaining-baseline.neon @@ -8512,14 +8512,6 @@ parameters: identifier: variable.undefined count: 1 path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$json_diags might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$json_procs might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - message: '#^Variable \$req_encounter might not be defined\.$#' identifier: variable.undefined count: 5 @@ -8532,10 +8524,6 @@ parameters: identifier: variable.undefined count: 2 path: ../interface/forms/fee_sheet/review/fee_sheet_ajax.php - - message: '#^Variable \$srcdir might not be defined\.$#' - identifier: variable.undefined - count: 1 - path: ../interface/forms/fee_sheet/review/fee_sheet_classes.php - message: '#^Variable \$billing_id might not be defined\.$#' identifier: variable.undefined count: 1 @@ -14356,22 +14344,6 @@ parameters: identifier: isset.variable count: 1 path: ../library/appointments.inc.php - - message: '#^Access to undefined constant procedure\:\:DIALYSIS_SERVICE\.$#' - identifier: classConstant.notFound - count: 1 - path: ../library/classes/ClinicalTypes/codes.php - - message: '#^Access to undefined constant procedure\:\:INFLU_VACCINE\.$#' - identifier: classConstant.notFound - count: 1 - path: ../library/classes/ClinicalTypes/codes.php - - message: '#^Access to undefined constant procedure\:\:PNEUMOCOCCAL_VACCINE\.$#' - identifier: classConstant.notFound - count: 1 - path: ../library/classes/ClinicalTypes/codes.php - - message: '#^Class procedure referenced with incorrect case\: Procedure\.$#' - identifier: class.nameCase - count: 3 - path: ../library/classes/ClinicalTypes/codes.php - message: '#^Variable \$inline_arg might not be defined\.$#' identifier: variable.undefined count: 1 diff --git a/interface/forms/fee_sheet/review/fee_sheet_ajax.php b/interface/forms/fee_sheet/review/fee_sheet_ajax.php index 8ed2d8ee0590..14d52ab32c34 100644 --- a/interface/forms/fee_sheet/review/fee_sheet_ajax.php +++ b/interface/forms/fee_sheet/review/fee_sheet_ajax.php @@ -15,6 +15,8 @@ use OpenEMR\Common\Acl\AclMain; use OpenEMR\Common\Csrf\CsrfUtils; +use OpenEMR\Forms\FeeSheet\Review\CodeInfo; +use OpenEMR\Forms\FeeSheet\Review\Procedure; if (!AclMain::aclCheckCore('acct', 'bill')) { header("HTTP/1.0 403 Forbidden"); @@ -72,22 +74,17 @@ } if ($task == 'add_diags') { - if (isset($_REQUEST['diags'])) { - $json_diags = json_decode((string) $_REQUEST['diags']); - } - - $diags = []; - foreach ($json_diags as $diag) { - $diags[] = new code_info($diag->code, $diag->code_type, $diag->description); - } - - $procs = []; - if (isset($_REQUEST['procs'])) { - $json_procs = json_decode((string) $_REQUEST['procs']); - } - - foreach ($json_procs as $proc) { - $procs[] = new procedure( + $json_diags = isset($_REQUEST['diags']) ? json_decode((string) $_REQUEST['diags']) : []; + $json_diags = is_array($json_diags) ? $json_diags : []; + $diags = array_map( + fn($diag) => new CodeInfo($diag->code, $diag->code_type, $diag->description), + $json_diags + ); + + $json_procs = isset($_REQUEST['procs']) ? json_decode((string) $_REQUEST['procs']) : []; + $json_procs = is_array($json_procs) ? $json_procs : []; + $procs = array_map( + fn($proc) => new Procedure( $proc->code, $proc->code_type, $proc->description, @@ -96,8 +93,9 @@ $proc->modifiers, $proc->units, 0 - ); - } + ), + $json_procs + ); $database->StartTrans(); create_diags($req_pid, $req_encounter, $diags); diff --git a/interface/forms/fee_sheet/review/fee_sheet_justify.php b/interface/forms/fee_sheet/review/fee_sheet_justify.php index 228f6c119e6f..786d0f8ceb52 100644 --- a/interface/forms/fee_sheet/review/fee_sheet_justify.php +++ b/interface/forms/fee_sheet/review/fee_sheet_justify.php @@ -14,6 +14,7 @@ require_once("fee_sheet_queries.php"); use OpenEMR\Common\Acl\AclMain; +use OpenEMR\Forms\FeeSheet\Review\CodeInfo; if (!AclMain::aclCheckCore('acct', 'bill')) { header("HTTP/1.0 403 Forbidden"); @@ -64,7 +65,7 @@ } foreach ($json_diags as $diag) { - $new_diag = new code_info($diag->{'code'}, $diag->{'code_type'}, $diag->{'description'}); + $new_diag = new CodeInfo($diag->{'code'}, $diag->{'code_type'}, $diag->{'description'}); if (isset($diag->{'prob_id'})) { $new_diag->db_id = $diag->{'prob_id'}; } else { diff --git a/interface/forms/fee_sheet/review/fee_sheet_queries.php b/interface/forms/fee_sheet/review/fee_sheet_queries.php index fb3d78168779..7dd0256435ec 100644 --- a/interface/forms/fee_sheet/review/fee_sheet_queries.php +++ b/interface/forms/fee_sheet/review/fee_sheet_queries.php @@ -11,11 +11,13 @@ * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 */ -require_once('fee_sheet_classes.php'); require_once("$srcdir/../custom/code_types.inc.php"); require_once("$srcdir/../library/lists.inc.php"); require_once("code_check.php"); +use OpenEMR\Forms\FeeSheet\Review\CodeInfo; +use OpenEMR\Forms\FeeSheet\Review\EncounterInfo; +use OpenEMR\Forms\FeeSheet\Review\Procedure; use OpenEMR\Services\PatientIssuesService; /** @@ -232,7 +234,7 @@ function issue_diagnoses($pid, $encounter) $diagnosis = explode(":", $code_key); $code = $diagnosis[1] ?? ''; $code_type = $diagnosis[0]; - $new_info = new code_info($code, $code_type, $title, $res['selected'] != 0); + $new_info = new CodeInfo($code, $code_type, $title, $res['selected'] != 0); //ensure that a diagnostic element is allowed to be created from a problem element if ($new_info->allowed_to_create_diagnosis_from_problem != "TRUE") { @@ -269,7 +271,7 @@ function common_diagnoses($limit = 10) $title = $res['code_text']; $code = $res['code']; $code_type = $res['code_type']; - $retval[] = new code_info($code, $code_type, $title, 0); + $retval[] = new CodeInfo($code, $code_type, $title, 0); } return $retval; @@ -298,7 +300,7 @@ function fee_sheet_items($pid, $encounter, &$diagnoses, &$procedures): void $code_type = $res['code_type']; $code_text = $res['code_text']; if ($res['ct_diag'] == '1') { - $diagnoses[] = new code_info($code, $code_type, $code_text); + $diagnoses[] = new CodeInfo($code, $code_type, $code_text); } elseif ($res['ct_fee'] == 1) { $fee = $res['fee']; $justify = $res['justify']; @@ -306,7 +308,7 @@ function fee_sheet_items($pid, $encounter, &$diagnoses, &$procedures): void $units = $res['units']; $selected = true; $mod_size = $res['ct_mod']; - $procedures[] = new procedure($code, $code_type, $code_text, $fee, $justify, $modifiers, $units, $mod_size, $selected); + $procedures[] = new Procedure($code, $code_type, $code_text, $fee, $justify, $modifiers, $units, $mod_size, $selected); } } } @@ -329,7 +331,7 @@ function select_encounters($pid, $encounter) " ORDER BY date DESC"; $results = sqlStatement($sql, $parameters); while ($res = sqlFetchArray($results)) { - $retval[] = new encounter_info($res['encounter'], $res['date']); + $retval[] = new EncounterInfo($res['encounter'], $res['date']); } return $retval; diff --git a/interface/forms/fee_sheet/review/fee_sheet_search_ajax.php b/interface/forms/fee_sheet/review/fee_sheet_search_ajax.php index 98ee621d83bf..6a252b74beda 100644 --- a/interface/forms/fee_sheet/review/fee_sheet_search_ajax.php +++ b/interface/forms/fee_sheet/review/fee_sheet_search_ajax.php @@ -11,7 +11,6 @@ */ require_once("../../../globals.php"); -require_once("fee_sheet_classes.php"); require_once("fee_sheet_search_queries.php"); use OpenEMR\Common\Acl\AclMain; diff --git a/interface/forms/fee_sheet/review/fee_sheet_search_queries.php b/interface/forms/fee_sheet/review/fee_sheet_search_queries.php index 0d4515f83a87..37d532b3def2 100644 --- a/interface/forms/fee_sheet/review/fee_sheet_search_queries.php +++ b/interface/forms/fee_sheet/review/fee_sheet_search_queries.php @@ -12,6 +12,8 @@ require_once("$srcdir/../custom/code_types.inc.php"); +use OpenEMR\Forms\FeeSheet\Review\CodeInfo; + /** * * wrapper for sequential code set search @@ -26,7 +28,7 @@ function diagnosis_search($search_type_id, $search_type, $search_query) $retval = []; $search = main_code_set_search($search_type, $search_query, 20); while ($code = sqlFetchArray($search)) { - array_push($retval, new code_info($code['code'], $search_type, $code['code_text'])); + array_push($retval, new CodeInfo($code['code'], $search_type, $code['code_text'])); } return $retval; diff --git a/interface/forms/fee_sheet/review/fee_sheet_classes.php b/src/Forms/FeeSheet/Review/CodeInfo.php similarity index 50% rename from interface/forms/fee_sheet/review/fee_sheet_classes.php rename to src/Forms/FeeSheet/Review/CodeInfo.php index 2da897057955..aa91a8725799 100644 --- a/interface/forms/fee_sheet/review/fee_sheet_classes.php +++ b/src/Forms/FeeSheet/Review/CodeInfo.php @@ -1,43 +1,44 @@ + * @author Michael A. Smith * @copyright Copyright (c) 2013 Kevin Yeh and OEMR + * @copyright Copyright (c) 2026 OpenCoreEmr Inc * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 */ -/** - * This is an encapsulation of code, code_type and description representing - * a code - */ - +namespace OpenEMR\Forms\FeeSheet\Review; -require_once("$srcdir/../custom/code_types.inc.php"); - -class code_info +class CodeInfo { - function __construct(public $code, public $code_type, public $description, public $selected = true) - { + public $db_id; + public $allowed_to_create_problem_from_diagnosis; + public $allowed_to_create_diagnosis_from_problem; + public $create_problem; + + public function __construct( + public $code, + public $code_type, + public $description, + public $selected = true + ) { // check if the code type is active and allowed to create medical problems from diagnosis elements $this->allowed_to_create_problem_from_diagnosis = "FALSE"; - if (check_code_set_filters($this->code_type, ["active","problem"])) { + if (function_exists('check_code_set_filters') && check_code_set_filters($this->code_type, ["active", "problem"])) { $this->allowed_to_create_problem_from_diagnosis = "TRUE"; } // check if the code type is active and allowed to create diagnosis elements from medical problems $this->allowed_to_create_diagnosis_from_problem = "FALSE"; - if (check_code_set_filters($this->code_type, ["active","diag"])) { + if (function_exists('check_code_set_filters') && check_code_set_filters($this->code_type, ["active", "diag"])) { $this->allowed_to_create_diagnosis_from_problem = "TRUE"; } } - public $db_id; - public $allowed_to_create_problem_from_diagnosis; - public $allowed_to_create_diagnosis_from_problem; - public $create_problem; public function getKey() { @@ -48,46 +49,14 @@ public function getCode() { return $this->code; } + public function getCode_type() { return $this->code_type; } + public function addArrayParams(&$arr) { array_push($arr, $this->code_type, $this->code, $this->description); } } - -/** - * This is an extension of code_info which supports the additional information - * held in a procedure billing entry - */ -class procedure extends code_info -{ - function __construct($c, $ct, $desc, public $fee, public $justify, public $modifiers, public $units, public $mod_size, $selected = true) - { - parent::__construct($c, $ct, $desc, $selected); - } - - //modifier, units, fee, justify - - public function addProcParameters(&$params) - { - array_push($params, $this->modifiers, $this->units, $this->fee, $this->justify); - } -} - -/** - * This is a class which pairs an encounter's ID with the date of the encounter - */ -class encounter_info -{ - function __construct(public $id, public $date) - { - } - - function getID() - { - return $this->id; - } -} diff --git a/src/Forms/FeeSheet/Review/EncounterInfo.php b/src/Forms/FeeSheet/Review/EncounterInfo.php new file mode 100644 index 000000000000..8a47fa5c93c2 --- /dev/null +++ b/src/Forms/FeeSheet/Review/EncounterInfo.php @@ -0,0 +1,29 @@ + + * @author Michael A. Smith + * @copyright Copyright (c) 2013 Kevin Yeh and OEMR + * @copyright Copyright (c) 2026 OpenCoreEmr Inc + * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 + */ + +namespace OpenEMR\Forms\FeeSheet\Review; + +class EncounterInfo +{ + public function __construct( + public $id, + public $date + ) { + } + + public function getID() + { + return $this->id; + } +} diff --git a/src/Forms/FeeSheet/Review/Procedure.php b/src/Forms/FeeSheet/Review/Procedure.php new file mode 100644 index 000000000000..514ad8eea8d7 --- /dev/null +++ b/src/Forms/FeeSheet/Review/Procedure.php @@ -0,0 +1,41 @@ + + * @author Michael A. Smith + * @copyright Copyright (c) 2013 Kevin Yeh and OEMR + * @copyright Copyright (c) 2026 OpenCoreEmr Inc + * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 + */ + +namespace OpenEMR\Forms\FeeSheet\Review; + +/** + * This is an extension of CodeInfo which supports the additional information + * held in a procedure billing entry + */ +class Procedure extends CodeInfo +{ + public function __construct( + $code, + $code_type, + $description, + public $fee, + public $justify, + public $modifiers, + public $units, + public $mod_size, + $selected = true + ) { + parent::__construct($code, $code_type, $description, $selected); + } + + public function addProcParameters(&$params) + { + array_push($params, $this->modifiers, $this->units, $this->fee, $this->justify); + } +} diff --git a/tests/Tests/Unit/Forms/FeeSheet/Review/FeeSheetClassesTest.php b/tests/Tests/Unit/Forms/FeeSheet/Review/FeeSheetClassesTest.php new file mode 100644 index 000000000000..1580a30bf4ab --- /dev/null +++ b/tests/Tests/Unit/Forms/FeeSheet/Review/FeeSheetClassesTest.php @@ -0,0 +1,195 @@ + + * @copyright Copyright (c) 2026 OpenCoreEmr Inc + * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 + */ + +namespace OpenEMR\Tests\Unit\Forms\FeeSheet\Review; + +use OpenEMR\Forms\FeeSheet\Review\CodeInfo; +use OpenEMR\Forms\FeeSheet\Review\EncounterInfo; +use OpenEMR\Forms\FeeSheet\Review\Procedure; +use PHPUnit\Framework\Attributes\CoversClass; +use PHPUnit\Framework\Attributes\Group; +use PHPUnit\Framework\TestCase; + +#[CoversClass(CodeInfo::class)] +#[CoversClass(Procedure::class)] +#[CoversClass(EncounterInfo::class)] +#[Group('isolated')] +class FeeSheetClassesTest extends TestCase +{ + protected function setUp(): void + { + parent::setUp(); + + // Set up minimal code_types global for check_code_set_filters() + $GLOBALS['code_types'] = [ + 'ICD10' => [ + 'active' => 1, + 'diag' => 1, + 'problem' => 1, + 'fee' => 0, + ], + 'CPT4' => [ + 'active' => 1, + 'diag' => 0, + 'problem' => 0, + 'fee' => 1, + ], + ]; + } + + protected function tearDown(): void + { + unset($GLOBALS['code_types']); + parent::tearDown(); + } + + public function testCodeInfoConstruction(): void + { + $codeInfo = new CodeInfo('A01.0', 'ICD10', 'Typhoid fever'); + + $this->assertEquals('A01.0', $codeInfo->code); + $this->assertEquals('ICD10', $codeInfo->code_type); + $this->assertEquals('Typhoid fever', $codeInfo->description); + $this->assertTrue($codeInfo->selected); + } + + public function testCodeInfoConstructionWithSelectedFalse(): void + { + $codeInfo = new CodeInfo('A01.0', 'ICD10', 'Typhoid fever', false); + + $this->assertFalse($codeInfo->selected); + } + + public function testCodeInfoGetKey(): void + { + $codeInfo = new CodeInfo('A01.0', 'ICD10', 'Typhoid fever'); + + $this->assertEquals('ICD10|A01.0', $codeInfo->getKey()); + } + + public function testCodeInfoGetCode(): void + { + $codeInfo = new CodeInfo('A01.0', 'ICD10', 'Typhoid fever'); + + $this->assertEquals('A01.0', $codeInfo->getCode()); + } + + public function testCodeInfoGetCodeType(): void + { + $codeInfo = new CodeInfo('A01.0', 'ICD10', 'Typhoid fever'); + + $this->assertEquals('ICD10', $codeInfo->getCode_type()); + } + + public function testCodeInfoAddArrayParams(): void + { + $codeInfo = new CodeInfo('A01.0', 'ICD10', 'Typhoid fever'); + $arr = ['existing']; + + $codeInfo->addArrayParams($arr); + + $this->assertEquals(['existing', 'ICD10', 'A01.0', 'Typhoid fever'], $arr); + } + + public function testCodeInfoAllowedToCreateProblemFromDiagnosis(): void + { + $codeInfo = new CodeInfo('A01.0', 'ICD10', 'Typhoid fever'); + + // ICD10 has problem=1 in our mock, so this should be TRUE + $this->assertEquals('TRUE', $codeInfo->allowed_to_create_problem_from_diagnosis); + } + + public function testCodeInfoAllowedToCreateDiagnosisFromProblem(): void + { + $codeInfo = new CodeInfo('A01.0', 'ICD10', 'Typhoid fever'); + + // ICD10 has diag=1 in our mock, so this should be TRUE + $this->assertEquals('TRUE', $codeInfo->allowed_to_create_diagnosis_from_problem); + } + + public function testProcedureConstruction(): void + { + $procedure = new Procedure( + '99213', + 'CPT4', + 'Office visit', + 75.00, + 'ICD10:A01.0', + '25', + 1, + 2 + ); + + $this->assertEquals('99213', $procedure->code); + $this->assertEquals('CPT4', $procedure->code_type); + $this->assertEquals('Office visit', $procedure->description); + $this->assertEquals(75.00, $procedure->fee); + $this->assertEquals('ICD10:A01.0', $procedure->justify); + $this->assertEquals('25', $procedure->modifiers); + $this->assertEquals(1, $procedure->units); + $this->assertEquals(2, $procedure->mod_size); + $this->assertTrue($procedure->selected); + } + + public function testProcedureInheritsFromCodeInfo(): void + { + $procedure = new Procedure( + '99213', + 'CPT4', + 'Office visit', + 75.00, + 'ICD10:A01.0', + '25', + 1, + 2 + ); + + // Test inherited methods from CodeInfo + $this->assertEquals('CPT4|99213', $procedure->getKey()); + $this->assertEquals('99213', $procedure->getCode()); + $this->assertEquals('CPT4', $procedure->getCode_type()); + } + + public function testProcedureAddProcParameters(): void + { + $procedure = new Procedure( + '99213', + 'CPT4', + 'Office visit', + 75.00, + 'ICD10:A01.0', + '25', + 1, + 2 + ); + $params = ['existing']; + + $procedure->addProcParameters($params); + + $this->assertEquals(['existing', '25', 1, 75.00, 'ICD10:A01.0'], $params); + } + + public function testEncounterInfoConstruction(): void + { + $encounterInfo = new EncounterInfo(123, '2026-01-05'); + + $this->assertEquals(123, $encounterInfo->id); + $this->assertEquals('2026-01-05', $encounterInfo->date); + } + + public function testEncounterInfoGetID(): void + { + $encounterInfo = new EncounterInfo(456, '2026-01-05'); + + $this->assertEquals(456, $encounterInfo->getID()); + } +} diff --git a/tests/bootstrap-isolated.php b/tests/bootstrap-isolated.php index a23bc30ed749..717d7c9076ea 100644 --- a/tests/bootstrap-isolated.php +++ b/tests/bootstrap-isolated.php @@ -34,3 +34,22 @@ $GLOBALS['HTML_CHARSET'] = 'UTF-8'; ini_set('default_charset', 'utf-8'); mb_internal_encoding('UTF-8'); + +// Define check_code_set_filters if it doesn't exist (for isolated testing) +if (!function_exists('check_code_set_filters')) { + function check_code_set_filters($key, $filters = []) + { + global $code_types; + if (empty($filters)) { + return false; + } + foreach ($filters as $filter) { + if (array_key_exists($key, $code_types)) { + if (($code_types[$key][$filter] ?? 0) != 1) { + return false; + } + } + } + return true; + } +} From 4d8df08fb1edb2c341d96d7c43f4b91bc6021d3f Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Mon, 5 Jan 2026 23:06:37 -0500 Subject: [PATCH 127/139] fix(phpstan): resolve staticMethod.notFound via @method annotations (#10059) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add @method annotations to oeHttp class to document static methods forwarded via __callStatic to oeHttpRequest. This allows PHPStan to understand the dynamic method forwarding. Also add require_once statements to codes.php for ClinicalTypes class dependencies. Changes: - Add @method annotations to oeHttp for get, post, put, patch, delete, etc. - Add require_once for Allergy, Communication, Diagnosis, etc. in codes.php - Remove 5 staticMethod.notFound entries from baseline Fixes #10058 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 --- .phpstan/phpstan-remaining-baseline.neon | 20 -------------------- library/classes/ClinicalTypes/codes.php | 10 ++++++++++ src/Common/Http/oeHttp.php | 17 +++++++++++++++++ 3 files changed, 27 insertions(+), 20 deletions(-) diff --git a/.phpstan/phpstan-remaining-baseline.neon b/.phpstan/phpstan-remaining-baseline.neon index dde177cce85b..a359a840987d 100644 --- a/.phpstan/phpstan-remaining-baseline.neon +++ b/.phpstan/phpstan-remaining-baseline.neon @@ -220,10 +220,6 @@ parameters: identifier: nullCoalesce.variable count: 1 path: ../controllers/C_DocumentCategory.class.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' - identifier: staticMethod.notFound - count: 1 - path: ../controllers/C_Prescription.class.php - message: '#^Variable \$p might not be defined\.$#' identifier: variable.undefined count: 1 @@ -16372,10 +16368,6 @@ parameters: identifier: arguments.count count: 1 path: ../src/Cqm/test.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:usingHeaders\(\)\.$#' - identifier: staticMethod.notFound - count: 5 - path: ../src/Easipro/Easipro.php - message: '#^Undefined variable\: \$row$#' identifier: variable.undefined count: 1 @@ -16444,10 +16436,6 @@ parameters: identifier: empty.variable count: 1 path: ../src/Gacl/GaclApi.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' - identifier: staticMethod.notFound - count: 1 - path: ../src/MedicalDevice/MedicalDevice.php - message: '#^Variable \$catEntry might not be defined\.$#' identifier: variable.undefined count: 5 @@ -16488,10 +16476,6 @@ parameters: identifier: variable.undefined count: 1 path: ../src/PaymentProcessing/Sphere/SpherePayment.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:getCurlOptions\(\)\.$#' - identifier: staticMethod.notFound - count: 1 - path: ../src/Pharmacy/Services/ImportPharmacies.php - message: '#^Variable \$zip might not be defined\.$#' identifier: variable.undefined count: 1 @@ -16512,10 +16496,6 @@ parameters: identifier: variable.undefined count: 1 path: ../src/RestControllers/FHIR/Operations/FhirOperationExportRestController.php - - message: '#^Call to an undefined static method OpenEMR\\Common\\Http\\oeHttp\:\:get\(\)\.$#' - identifier: staticMethod.notFound - count: 1 - path: ../src/Rx/RxList.php - message: '#^Variable \$all might not be defined\.$#' identifier: variable.undefined count: 1 diff --git a/library/classes/ClinicalTypes/codes.php b/library/classes/ClinicalTypes/codes.php index 6548adfcae5d..5713a69b32c0 100644 --- a/library/classes/ClinicalTypes/codes.php +++ b/library/classes/ClinicalTypes/codes.php @@ -7,6 +7,16 @@ // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // + +require_once __DIR__ . '/Allergy.php'; +require_once __DIR__ . '/Communication.php'; +require_once __DIR__ . '/Diagnosis.php'; +require_once __DIR__ . '/Encounter.php'; +require_once __DIR__ . '/LabResult.php'; +require_once __DIR__ . '/Medication.php'; +require_once __DIR__ . '/PhysicalExam.php'; +require_once __DIR__ . '/Procedure.php'; + class Codes { const ICD9 = 'ICD9'; diff --git a/src/Common/Http/oeHttp.php b/src/Common/Http/oeHttp.php index 426c0440a62e..17fdfc9383d4 100644 --- a/src/Common/Http/oeHttp.php +++ b/src/Common/Http/oeHttp.php @@ -23,6 +23,23 @@ * extends oeOAuth * * @package OpenEMR\Common\Http + * + * Static methods forwarded via __callStatic to oeHttpRequest: + * @method static oeHttpRequest usingHeaders(array $headers) + * @method static oeHttpRequest setOptions(array $options) + * @method static oeHttpRequest setDebug(string $port = '') + * @method static oeHttpRequest asJson() + * @method static oeHttpRequest asFormParams() + * @method static oeHttpRequest contentType(string $contentType) + * @method static oeHttpRequest accept(string $header) + * @method static oeHttpRequest setParams(array $params) + * @method static oeHttpRequest usingBaseUri(string $baseUri) + * @method static oeHttpResponse get(string $url, array $queryParams = []) + * @method static oeHttpResponse getCurlOptions(string $url, array $queryParams = [], array $curlOptions = []) + * @method static oeHttpResponse post(string $url, array $params = []) + * @method static oeHttpResponse patch(string $url, array $params = []) + * @method static oeHttpResponse put(string $url, array $params = []) + * @method static oeHttpResponse delete(string $url, array $params = []) */ class oeHttp extends oeOAuth { From 82c534387af75a5b8de34ad7b67f696883f86f9a Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Tue, 6 Jan 2026 09:00:57 -0500 Subject: [PATCH 128/139] fix(health): skip auth for readyz endpoint to prevent login redirect (#10116) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(health): skip auth for readyz endpoint to prevent login redirect Set $ignoreAuth = true before loading globals.php so the /meta/health/readyz endpoint returns JSON health status instead of redirecting to login page. This makes the endpoint suitable for Docker/Kubernetes readiness probes. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 * test(health): add API tests for health endpoints Adds tests to verify /meta/health/readyz and /meta/health/livez endpoints return JSON responses without requiring authentication. The readyz test specifically checks for the regression in #10115 where the endpoint was redirecting to login instead of returning health status. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --------- Co-authored-by: Claude Opus 4.5 --- meta/health/index.php | 3 + tests/Tests/Api/HealthEndpointTest.php | 100 +++++++++++++++++++++++++ 2 files changed, 103 insertions(+) create mode 100644 tests/Tests/Api/HealthEndpointTest.php diff --git a/meta/health/index.php b/meta/health/index.php index 3f47e0d20488..8b8f489a4603 100644 --- a/meta/health/index.php +++ b/meta/health/index.php @@ -55,6 +55,9 @@ // NOTE: This loads the full OpenEMR framework on each probe request. // For high-frequency probes, a lighter bootstrap path that only // initializes the database connection could improve performance. + // + // Skip authentication - health checks must work without a session + $ignoreAuth = true; require_once __DIR__ . "/../../interface/globals.php"; // Run full health checks diff --git a/tests/Tests/Api/HealthEndpointTest.php b/tests/Tests/Api/HealthEndpointTest.php new file mode 100644 index 000000000000..5c92839b0b02 --- /dev/null +++ b/tests/Tests/Api/HealthEndpointTest.php @@ -0,0 +1,100 @@ + + * @copyright Copyright (c) 2025 OpenCoreEMR Inc + * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 + */ + +namespace OpenEMR\Tests\Api; + +use GuzzleHttp\Client; +use PHPUnit\Framework\TestCase; + +class HealthEndpointTest extends TestCase +{ + private Client $client; + + protected function setUp(): void + { + $baseUrl = getenv("OPENEMR_BASE_URL_API", true) ?: "https://localhost"; + $this->client = new Client([ + "verify" => false, + "base_uri" => $baseUrl, + "timeout" => 10, + "http_errors" => false, + "allow_redirects" => false, // Don't follow redirects - we want to detect them + ]); + } + + /** + * Test that /meta/health/livez returns JSON without authentication + */ + public function testLivezReturnsJsonWithoutAuth(): void + { + $response = $this->client->get('/meta/health/livez'); + + $this->assertEquals(200, $response->getStatusCode(), 'livez should return 200 OK'); + + $contentType = $response->getHeaderLine('Content-Type'); + $this->assertStringContainsString('application/json', $contentType, 'livez should return JSON content type'); + + $body = json_decode((string) $response->getBody(), true); + $this->assertIsArray($body, 'livez response should be valid JSON'); + $this->assertArrayHasKey('status', $body, 'livez response should have status key'); + $this->assertEquals('alive', $body['status'], 'livez status should be "alive"'); + } + + /** + * Test that /meta/health/readyz returns JSON without authentication + * + * This is the critical test for issue #10115 - the readyz endpoint was + * redirecting to login instead of returning health status. + */ + public function testReadyzReturnsJsonWithoutAuth(): void + { + $response = $this->client->get('/meta/health/readyz'); + + // Should NOT be a redirect (3xx status) + $statusCode = $response->getStatusCode(); + $this->assertNotEquals(302, $statusCode, 'readyz should not redirect (issue #10115)'); + $this->assertNotEquals(301, $statusCode, 'readyz should not redirect'); + $this->assertLessThan(300, $statusCode, 'readyz should return 2xx status, not redirect'); + $this->assertEquals(200, $statusCode, 'readyz should return 200 OK'); + + // Should return JSON, not HTML/JavaScript redirect + $contentType = $response->getHeaderLine('Content-Type'); + $this->assertStringContainsString('application/json', $contentType, 'readyz should return JSON content type'); + + $bodyRaw = (string) $response->getBody(); + $this->assertStringNotContainsString(' + - - + + - get('payment_gateway') === 'AuthorizeNet' && isset($_SESSION['patient_portal_onsite_two'])) { // Include Authorize.Net dependency to tokenize card. // Will return a token to use for payment request keeping // credit info off the server. @@ -1551,7 +1553,7 @@ function paymentFormUpdate(opaqueData) { - + get('payment_gateway') === 'Stripe' && isset($_SESSION['patient_portal_onsite_two'])) { // Begin Include Stripe ?> + + + - +