From 0eb2bbdf160755a461eba8248e7472dceba0e57a Mon Sep 17 00:00:00 2001 From: Michael McAndrew Date: Mon, 21 May 2018 20:46:56 +0100 Subject: [PATCH] adding system check for address parsing --- CRM/Utils/Check/Component/AddressParsing.php | 67 ++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 CRM/Utils/Check/Component/AddressParsing.php diff --git a/CRM/Utils/Check/Component/AddressParsing.php b/CRM/Utils/Check/Component/AddressParsing.php new file mode 100644 index 0000000000..f79c11594c --- /dev/null +++ b/CRM/Utils/Check/Component/AddressParsing.php @@ -0,0 +1,67 @@ +Street address parsing is enabled but not supported by your locale (%1).', + [1 => $config->lcMessages] + ), + ts('Street address parsing'), + \Psr\Log\LogLevel::WARNING, + 'fa-address-card' + ); + } + } + + return $messages; + } + +} -- 2.25.1