diff --git a/src/application/controllers/appointments.php b/src/application/controllers/appointments.php old mode 100644 new mode 100755 index a9c96cd4..6b6434c7 --- a/src/application/controllers/appointments.php +++ b/src/application/controllers/appointments.php @@ -210,20 +210,11 @@ class Appointments extends CI_Controller { } catch(Exception $exc) { $view['exceptions'][] = $exc; } - - // :: LOAD THE BOOK SUCCESS VIEW - $view = array( - 'appointment_data' => $appointment, - 'provider_data' => $provider, - 'service_data' => $service, - 'company_name' => $company_settings['company_name'] - ); - } catch(Exception $exc) { $view['exceptions'][] = $exc; } - - $this->load->view('appointments/book_success', $view); + $this->session->set_flashdata('book_exceptions', $view['exceptions']); + redirect('appointments/book_success/'.$appointment['id']); } } @@ -678,6 +669,39 @@ class Appointments extends CI_Controller { )); } } + /** + * GET an specific appointment book and redirect to the success screen. + * + * @param int $appointment_id Contains the id of the appointment to retrieve. + */ + public function book_success($appointment_id) { + //if the appointment id doesn't exist or zero redirect to index + if(!$appointment_id){ + redirect('appointments'); + } + $this->load->model('appointments_model'); + $this->load->model('providers_model'); + $this->load->model('services_model'); + $this->load->model('settings_model'); + //retrieve the data needed in the view + $appointment = $this->appointments_model->get_row($appointment_id); + $provider = $this->providers_model->get_row($appointment['id_users_provider']); + $service = $this->services_model->get_row($appointment['id_services']); + $company_name = $this->settings_model->get_setting('company_name'); + //get the exceptions + $exceptions = $this->session->flashdata('book_success'); + // :: LOAD THE BOOK SUCCESS VIEW + $view = array( + 'appointment_data' => $appointment, + 'provider_data' => $provider, + 'service_data' => $service, + 'company_name' => $company_name, + ); + if($exceptions){ + $view['exceptions'] = $exceptions; + } + $this->load->view('appointments/book_success', $view); + } } /* End of file appointments.php */ diff --git a/src/application/views/appointments/book_success.php b/src/application/views/appointments/book_success.php old mode 100644 new mode 100755 index b47af824..c067cee2 --- a/src/application/views/appointments/book_success.php +++ b/src/application/views/appointments/book_success.php @@ -44,7 +44,9 @@ ' . $this->lang->line('appointment_registered') . ''; echo '

' . $this->lang->line('appointment_details_was_sent_to_you') . '

'; - + echo ' + '.$this->lang->line('go_to_booking_page').''; + if ($this->config->item('ea_google_sync_feature')) { echo '