diff --git a/system/boot.php b/system/boot.php index 2b55909b..8c221a87 100644 --- a/system/boot.php +++ b/system/boot.php @@ -228,6 +228,23 @@ function alphanumeric($str, $tambahan = "") return preg_replace("/[^a-zA-Z0-9" . $tambahan . "]+/", "", $str); } + +function sendTelegram($txt) +{ + Message::sendTelegram($txt); +} + +function sendSMS($phone, $txt) +{ + Message::sendSMS($phone, $txt); +} + +function sendWhatsapp($phone, $txt) +{ + Message::sendWhatsapp($phone, $txt); +} + + function time_elapsed_string($datetime, $full = false) { $now = new DateTime; diff --git a/version.json b/version.json index e8592d2c..e8709e97 100644 --- a/version.json +++ b/version.json @@ -1,3 +1,3 @@ { - "version": "2023.3.6" + "version": "2023.3.12" } \ No newline at end of file