From fc02e55a690c364128e4f458e016343b830500d7 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Wed, 23 Sep 2020 11:35:54 +0300 Subject: [PATCH] Removed the notifications library (it will be implemented on an upcoming version). --- application/libraries/Notifications.php | 89 ------------------------- 1 file changed, 89 deletions(-) delete mode 100644 application/libraries/Notifications.php diff --git a/application/libraries/Notifications.php b/application/libraries/Notifications.php deleted file mode 100644 index 90b08361..00000000 --- a/application/libraries/Notifications.php +++ /dev/null @@ -1,89 +0,0 @@ -framework = &get_instance(); - } - - /** - * Send an email notification for an appointment confirmation. - * - * @param array $appointment - * @param array $service - * @param array $provider - * @param array $customer - * @param array $settings - * @param string $subject - * @param string $message - * @param string $link - * @param string $recipient - * @param string $ics - */ - public function send_appointment_confirmation( - $appointment, - $service, - $provider, - $customer, - $settings, - $subject, - $message, - $link, - $recipient, - $ics - ) - { - // TODO: Port logic from engine/Notifications/Email.php - } - - /** - * Send an email notification for an appointment removal. - * - * @param array $appointment - * @param array $service - * @param array $provider - * @param array $customer - * @param array $settings - * @param string $recipient - * @param string $reason - */ - public function send_appointment_removal( - $appointment, - $service, - $provider, - $customer, - $settings, - $recipient, - $reason - ) - { - // TODO: Port logic from engine/Notifications/Email.php - } - - /** - * Send an email notification with the new password, used when recovering an account. - * - * @param string $password - * @param string $recipient - * @param string $settings - */ - public function send_new_password($password, $recipient, $settings) - { - // TODO: Port logic from engine/Notifications/Email.php - } -}